EDIT: Oh, and as I said before, remove the height attribute.
It looks fine to me. But then again, as said in your last thread, if your window width is too small it messes it up a little. 1074px seems to be the magic number for the inner width. If we add in the browsers border and scroll bar etc. we can round it to an upper limit of 1200px. So if your screen resolution is less than 1200px wide, it messes up your design.
Anyhow, the big gap you are refering to is because of the padding that is applied to all div tags in the header, on this line
Code:
#header div { float:left; margin:0; padding:20px 0 18px 30px; text-shadow:none; }
This padding is applied both to the pages' title to the left (div tag with class blogInfo) and the menu row (div tag with class stuffing) underneeth it. Try playing around with the padding a little.
I would suggest modifying the vertical padding in the #header div a bit and adding seperate paddings to the blogInfo and stuffing classes.
Perhaps something like this?
Code:
#header div { float:left; margin:0; padding: 5px 0 10px 30px; text-shadow:none; }
#header .blogInfo { padding: 20px 0 5px 30px; }
#header .stuffing { padding: 0; }
__________________
Your answers will only be as good as your question. Formulate it well and give all the necessary information.
Last edited by lizciz; 06-20-2011 at 08:36 PM..
|