Move menu bar above image
-
Hi,
I’m trying to move the menu bar above my header image.Also I want to change it to a custom color. I tried customizing in the colors but it doesn’t look right, looks darker.
Thanks.
The blog I need help with is: (visible only to logged in users)
-
To move the navigation on top of the header image, use the following CSS:
header { margin-top:62px; } .navigation { position: absolute; top: 46px; } @media screen and (min-width: 782px) { .navigation { top: 32px; } }To change the background color of the header, use this code (and change the color to your liking):
.navigation.bg-dark { background: black; } -
- The topic ‘Move menu bar above image’ is closed to new replies.