View Single Post
Old March 16th, 2005, 10:05 AM   #6 (permalink)
Michael P
PhotoPost Developer
Verified Customer
 
Join Date: Jan 2002
Posts: 11,834
I'd look closer at your stylesheets:

background: #D5D8E5 url(../../images/gradients/gradient_panelsurround.gif) repeat-x top left;
color: #000000;

these kinds of relative URLs are likely to get you in trouble when using files outside the normal directory structure. I'd change them to absolute paths like:

background: #D5D8E5 url(/forum/images/gradients/gradient_panelsurround.gif) repeat-x top left;
color: #000000;

You can see the vB3 mapping of style variables at the bottom of the forums/vb3.php file.
__________________
Please do not PM me for support or sales questions. Thank you for your understanding.
Michael P is offline   Reply With Quote