i have a structure made on twitter Bootstrap which you can see here:
http://codepen.io/DiV666/pen/zBxdmw
The problem is that there is lot of space between the rows containing the h1 (TITLE) and h2 (Subtitle). This space depends on the left menu, if you remove or add options, this space becomes larger or smaller.
To fix it I set overflow: hidden;
in #page-content
, but I do not know if this is the best way.
Can someone help?
Thank You.
4
Answers
Add Internal style as below:
If it not works assign !important;
Add
overflow: hidden;
into .row classThis is caused by the
.row:after
. Just set it to initial, otherwise it inherits the table display from its parent:Put both tags in the same row:
http://codepen.io/anon/pen/jAXkoJ
If you want a fixed sidebar so it didn’t depend of the content of
page-content
, made it position fixed:http://codepen.io/anon/pen/NAZyQE