In my page there is an additional padding at the top of the page that I am unable to remove. Tried everything under the sun and hoped that someone could show me the way.
Any thoughts?
Your page has an element at the top with a top-margin Is spread out. If you have this:
& lt; Div class = "wrapper" style = "margin: 0" & gt; & Lt; Div class = "section" style = "margin: 40px 0" & gt; material! & Lt; / Div & gt; & Lt; / Div & gt;
Then .section
element to . Wrapper will be placed at the top of
and expand its 40px margin head, its margin is to do this together with collapse so that the two margins are not deposited between the elements. You can prevent it by adding overflow: wrapped
over the cover.
In your markup, this is the .mini-search
element in which 40px is above the margin. Either remove this margin, or add overflow: hidden
to that field.
Comments
Post a Comment