• Support will be limited until May 8th, as I will be out of the office travelling. Thank you for your patience and understanding.

Bug Time & post# color not visible when post header changes to light color

Status
Not open for further replies.
Unfortunately this can't be resolved at this time, because the <span> that controls time has a colour setting that overrides what APTL tries to set. Sorry :(
 
I figured it out, but it's a little redundant. Adding the following (just for yellow in my case) to dbtech_thanks.css fixed the issue:
HTML:
.thanks_highlight_Yellow span
{
	color: {vb:stylevar body_color} !important;
}
.thanks_highlight_Yellow span a
{
	color: {vb:stylevar body_color} !important;
}

Edit:
This will work too:
HTML:
.thanks_highlight_Yellow, .thanks_highlight_Yellow span, .thanks_highlight_Yellow span a
{
	background: none Yellow !important;
	color: {vb:stylevar body_color} !important;
}
 
Last edited:
Interesting, I hadn't considered that. I'll implement that in the next version, thanks :D
 
Interesting, I hadn't considered that. I'll implement that in the next version, thanks :D

Thanks for putting this in. There was one small issue I noticed after I saw it with a darker color - the other links in the post footer for edit post, reply, etc lost their icons because the css background: was over riding them. To fix I did this:

Code:
.thanks_highlight_Yellow
{
	background: none Yellow !important;
	color: {vb:stylevar body_color} !important;
}
.thanks_highlight_Yellow span, .thanks_highlight_Yellow span a
{
	background-color: Yellow !important;
	color: {vb:stylevar body_color} !important;
}
 
Status
Not open for further replies.

Legacy Advanced Post Thanks / Like

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