Reputation: 2688
Short of adding in some jQuery to change the height of the #inner_page container, how can I do the same in CSS?
I need that container's height to be the height of the inner .content_text container.
(let me know of you need the CSS code, I assume if you're here you know how to view source...)
Upvotes: 0
Views: 47
Reputation: 711
If you change the style of the inner_body to
display: table;
It should do the trick.
Upvotes: 1