
Originally Posted by
ameerulislam
Boss now new problem arose. the menu bar gets extra margin/padding from the left.

Hi,
You didn't add the code I gave you but instead added an invalid rule before the margin rule in the media query causing it to be missed.
line 1631 style.css
You added this:
Code:
#header_margin{padding-bottom:0};
It should be this:
Code:
#header_margin{padding-bottom:0}
There should be no semi-colon at the end. Otherwise it makes the following rule unmatchable.
Code:
#header_margin{padding-bottom:0};
.header-container {
margin-left:0;
}
It shuld be:
Code:
#header_margin{padding-bottom:0}
.header-container {
margin-left:0;
}
Bookmarks