Modal Add Subpage Page Type Layout is Wrong

Permalink
I am working on a theme that uses a framework that is very similar to Bootstrap. Everything seems to work ok, however, when I go to add a sub-page, the Page Type icon menu in the modal box doesn't look right. I have around 18 installed page types, but the icons seem to all be aligning to the right.

On the first row, there's 4 (which is normal, I believe), but then on the next row there's only 2, then 4, then 2 then 1, then 4 again and so on.

Is there a class that Concrete uses that may be conflicting? Seems that something in my style is "bleeding over" and causing this.

Any ideas?

PineCreativeLabs
 
jero replied on at Permalink Reply
jero
Check whether your css has rules that can be applied globally. I often find when converting an existing html or other CMS over to C5, that the C5 interface goes bananas. Pointing Firefox/Firebug at the offending element tells me which css rule is causing the grief.

I usually fix these by making the css rules in my theme have a div prefix, e.g.

p {float:right}


I change to
#main p {float:right}


Where main is the id of a div that encloses everything except the C5 menu bar.