Status
Not open for further replies.

1quicksi

Customer
In the user profile the dates background are not accepting custom settings.
 

Attachments

  • Capture.webp
    Capture.webp
    3.8 KB · Views: 17
EDIT: I can't seem to replicate this, there's no background set for that area.

Have you reverted the .css template for APTL?
 
Styles & Templates -> expand your skin -> CSS Templates -> dbtech_thanks.css and dbtech_thanks_compat.css -> Revert
|-> DragonByte Tech: Advanced Post Thanks / Like Templates -> dbtech_thanks_memberinfo_block_thanks -> Revert

If they have been customised.
 
I have never modified any of your programs. In fact this was installed but never activated. I recently just updated it and brought it online and did the fist import of the VBSEO like system for testing. I can verify that all of the above are listed and in black meaning "Template is Unchanged From the Default Style" The absolute least I have ever done is modify some of the language phrases to better match my site.
 
Ok, that is controlled by the stylevar body_background

But changing that will change other things on your site. So lets try this.

Add the following to your additional.css template:

Code:
<!-- APTL fix -->

#view-thanks .member_content .subsectionhead-understate {
	font-weight:bold;
	background: {vb:stylevar module_background_color};
	position:relative;
	top: {vb:math {vb:stylevar font.fontSize}/2}px;
	display:block;
	float: {vb:stylevar left};
	padding-top: {vb:math {vb:stylevar padding}/2};
	padding-{vb:stylevar right}: {vb:math {vb:stylevar padding}/2};
}

<!-- APTL fix -->

Let me know if that fixes it for you.
 
Last edited:
OK remove that, then look for the template, dbtech_thanks_compat.css

In that template search for the following:
Code:
#view-thanks .member_content .subsectionhead-understate {
	font-weight:bold;
	background: {vb:stylevar body_background.backgroundColor};
	position:relative;
	top: {vb:math {vb:stylevar font.fontSize}/2}px;
	display:block;
	float: {vb:stylevar left};
	padding-top: {vb:math {vb:stylevar padding}/2};
	padding-{vb:stylevar right}: {vb:math {vb:stylevar padding}/2};
}

And change it to this:

Code:
#view-thanks .member_content .subsectionhead-understate {
	font-weight:bold;
	background: transparent;
	position:relative;
	top: .5px;
	display:block;
	float: {vb:stylevar left};
	padding-top: {vb:math {vb:stylevar padding}/2};
	padding-{vb:stylevar right}: {vb:math {vb:stylevar padding}/2};
}
 
Status
Not open for further replies.

Similar threads

Legacy Advanced Post Thanks / Like

vBulletin 3.8.x vBulletin 4.x.x
Seller
DragonByte Technologies
Release date
Last update
Total downloads
4,051
Customer rating
5.00 star(s) 1 ratings
Back
Top