Make the gap between pages/post and the menu smaller
-
how can I decrease the gap between the line for pages/posts and the menu?
The blog I need help with is: (visible only to logged in users)
-
I’m a big time CSS newbie, but I think I can help on this one.
Try typing this into the CSS customizer:
nav[role=”navigation”] li a {
position: relative;
top: 50px;
}The higher the number (where “50” is), the more the menu should move down. The lower the number, the less it moves. Negative number values should move the menu up instead. (I hope I don’t have that backwards. If I do, use -50 instead of 50.)
-
Add this:
#header { padding-bottom: 0; }If that’s not enough, add this too and decrease the value:
#branding { min-height: 170px; } -
- The topic ‘Make the gap between pages/post and the menu smaller’ is closed to new replies.