Archived topic
Creating a transparent menu on the header logo
1 reply · Started by Christian Zumbrunnen on February 17, 2015
Viewing posts 1–2 of 2

I'd like to create a menu similar to the one shown above but am not sure how to go for it.
Would it be best to adapt the css for the "Navigation Position" / "Float Right" or a Header Widget Menu?
Any practical ideas?
In order to place HTML above images, you need to change the position to absolute.
Something like this may work:
@media screen and (min-width: 769px) {
.inside-header {
position: relative;
}
.main-navigation {
position: absolute;
bottom: 5px;
right: 5px;
}
}
Make sure the navigation is set to float right.
Let me know :)
This archived topic is closed to new replies.