Theme Affects Appearance of Concrete Interface

Permalink
I have a theme that I'm working on that is showing the styling for the form in the Concrete interface. Is there a way to keep it from doing this?

PineCreativeLabs
 
VidalThemes replied on at Permalink Best Answer Reply
VidalThemes
The way I do it, is to wrap the entire site, something like this

</head>
<body>
<div class="c5wrap">
<div class="container">
Entire site here
</div>
</div>


Then just give it some css to cover the site:

.c5wrap   {width: 100%; overflow: hidden; background-color: #fff;}


Then all your CSS should be prefixed with the .c5wrap class, something like this:

.c5wrap input {border: 1px solid #ccc etc etc}


This holds all the css and site styling away from the C5 styles.