Quote:
Originally Posted by Kat-2
I tried the first code, didn't change anything. Replaced it with second code, and still didn't change anything. I did it exactly as you stated to do it. I don't know what the heck is wrong. 
|
Hmm ok then try this one:
PHP Code:
if (STYLEID == 1) {
$vsacssfix = '<style type="text/css">
#vsacb_messagearea {
background:#ffffff !important;
background-color:#ffffff !important;
}
</style>';
$template_hook[headinclude_bottom_css] .= $vsacssfix;
}
But make sure that when hovering over the styles name in Style Manager that the styleid # is in fact 1, if it's not then change this
1 to the
# of your style.
Code:
if (STYLEID == 1) {
$vsacssfix = '<style type="text/css">
#vsacb_messagearea {
background:#ffffff !important;
background-color:#ffffff !important;
}
</style>';
$template_hook[headinclude_bottom_css] .= $vsacssfix;
}
Basically if you are viewing all your styles via the Style Manager in admincp and you click on a style it opens that style in a new window, note the url up top i.e.
http://www.yoursite.com/forum.php?styleid=22 and the last # which in my example is 22, is the style id so then we would replace the 1 with 22

.
Quote:
Originally Posted by GaryT
I really have to thank you for going above and beyond by producing and maintaining this style.
As far as any issues with your latest release, I've been beating it up and shaking it down. So far everything looks good after the latest update.
Thanks
|
Thanks, been real busy lately and just trying to be helpful best I can

.