Separate Headline Styles for Theme and Concrete

Permalink
Hi. This may have already been covered, but I couldn't find it.

When I define headline styles for themes (h1 and h2, mostly), they get used throughout the editing and dashboard interface in Concrete5 for dialog boxes, etc.

How do I keep the default Concrete5 styles for the backend, with separate styles for the front end?

BeKindRewind
 
Mnkras replied on at Permalink Reply
Mnkras
make an extra div tag, for example put div id=wrapper

and then apply that id to your CSS
Mnkras replied on at Permalink Reply
Mnkras
as an example, stick this after the closing head tag:

<div id="wrapper">

and this before the closing body tag </div> then apply

#wrapper to your CSS
BeKindRewind replied on at Permalink Reply
BeKindRewind
Thanks!