Home › Forums › CSS › Min Width Issue: › Reply To: Min Width Issue:
August 26, 2014 at 11:26 am
#180711
Participant
Here’s the deal:
Looks like you only have a max-width
of 1140px on the actual elements… like h2
, h6
, p
, etc. The problem is… you need to set the CONTAINER to a max-width
of 1140px. See, right now, no single text element is wider than 1140px. So, the rule isn’t being enforced. Looks like the container you need to look at is called .site-inner
. It’s got a max-width
of 100%. Change that to 1140px.
Now, this might screw up your background tiles, as I don’t know what’s going on with them. But… the idea is that they are OUTSIDE the container (in the markup) and the text elements are INSIDE the container.