Quote:
|
Originally Posted by Misuzu so i have to add it manually? it's not supposed to carry over from the default css for that style? |
It will but bear in mind that if your CSS references something like "url(images/{whatever}.gif)" that the "images" folder is relative to your forums "/forums" folder. CMPS typically sits in the root "/" directory and Gallery typically sits off of root "/gallery" so it doesn't know about the "images" folder. That means when Gallery loads it's looking for "/gallery/images/{whatever}.gif" which most likely doesn't exist so it doesn't display anything (and because it's in the CSS instead of the HTML it doesn't display a red-x either).
Changing the reference instead to be "url(/forums/images/{whatever}.gif)" means that now it doesn't matter if the page is in the root directory, gallery directory, or anywhere else... it'll be able to find the images folder.