URGENT: CSS and height
Permalink 1 user found helpful
Hi,
My first time using Concrete5 has been going pretty well so far, but I think I need a fresh pair of eyes to figure out what's wrong with the content height on a lot of the pages. The wrapper doesn't extend to 100% like it should, and blocks/text are overlapping the footer.
Here's the web site:
(edited out)
Thank you!
My first time using Concrete5 has been going pretty well so far, but I think I need a fresh pair of eyes to figure out what's wrong with the content height on a lot of the pages. The wrapper doesn't extend to 100% like it should, and blocks/text are overlapping the footer.
Here's the web site:
(edited out)
Thank you!
what would you like your page to do instead of overlapping the footer? you have to define something for your overflow-x and overflow-y
Thank you both.
I used your info about making the height: auto; and also added this:
#maincontent:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
Solved!
I used your info about making the height: auto; and also added this:
#maincontent:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
Solved!
Generally I use height:auto and not 100% but there seems to be some height restriction on html and body selectors limiting both to 85%
Not sure if they are your specific issue, but I wouldn't do either.