Quote:
Originally Posted by Max Taxable
I just checked it and it all looks fine, did you fix this issue already?
|
No. I set
Store CSS Stylesheets as Files? back to
No
--------------- Added [DATE]1323316588[/DATE] at [TIME]1323316588[/TIME] ---------------
I set it back to No if anyone wants to take a look again
--------------- Added [DATE]1323317209[/DATE] at [TIME]1323317209[/TIME] ---------------
Hmm, I think I found the issue

. Looking at the templates again....
FORUMDISPLAY
HTML Code:
<vb:if condition="$vboptions['storecssasfile']">
{vb:cssfile forumdisplay-rollup.css}
<vb:else />
{vb:cssfile toolsmenu.css,forumbits.css,forumdisplay.css,threadlist.css,options.css,sidebar.css,tagcloud.css,widgets.css}
</vb:if>
SHOWTHREAD
HTML Code:
<vb:if condition="$vboptions['storecssasfile']">
{vb:cssfile showthread-rollup.css}
<vb:else />
{vb:cssfile toolsmenu.css,postlist.css,showthread.css,postbit.css,options.css,attachment.css,poll.css,lightbox.css,sidebar.css,tagcloud.css,widgets.css}
</vb:if>
When I change
HTML Code:
{vb:cssfile forumdisplay-rollup.css}
To
HTML Code:
{vb:cssfile forumdisplay-rollup.css,sidebar.css,tagcloud.css,widgets.css}
And change
HTML Code:
{vb:cssfile showthread-rollup.css}
To
HTML Code:
{vb:cssfile showthread-rollup.css,sidebar.css,tagcloud.css,widgets.css}
It works again. Which still has me confused because I thought
xxxxxxx-rollup.css already included all that other stuff