Home » Forums » Customizing
How do I setup an additional CSS and make it so that certain pages us the alternate CSS?
You can set CSS rules that apply to specific sections by separating them by body tag's classname.
If you do View Source on your site, the body tag has different classname depending where you are, they vary according to the project type.
In CSS you can reference to them like this, for examplebody.webpage #leftCol {}
That would apply to #leftCol at pages that are of type webpage (as opposed to albums, forums etc).
Bold Italics Code Quote Link Image
CSS pages
How do I setup an additional CSS and make it so that certain pages us the alternate CSS?
27 posts 1 year, 3 months ago
You can set CSS rules that apply to specific sections by separating them by body tag's classname.
If you do View Source on your site, the body tag has different classname depending where you are, they vary according to the project type.
In CSS you can reference to them like this, for example
body.webpage #leftCol {}
That would apply to #leftCol at pages that are of type webpage (as opposed to albums, forums etc).