Home Forums Ibsen Moving Main Nav menu? Reply To: Moving Main Nav menu?

#11905
Andy
Keymaster

The header image is a background image, so if you use a header image the menu will always display like this over the top of the header image as it is part of the header section.

To move it out of the header area would require a lot of custom PHP coding and testing in a bespoke child theme.

Can I suggest giving the menu a background color, with some code added to ‘Customize’ > ‘Additonal CSS’:

#site-navigation {
    background-color: #fff;
}

or a partial transparent color:

#site-navigation {
    background-color: rgba(255,255,255,0.8);
}