Archived topic
How can I add background image to menu below header?
3 replies · Started by crosby87 on May 4, 2021
Hi there,
I would like to add a background picture to my menu below the header.
See screenshot: https://imgur.com/kRtYDr2
So basically i would like to add a picture to the bar where the menu is. I can change the color in customize however i cannot add a picture there.
Could you please provide a code?
Many thanks!
Hi there,
You can add it using custom CSS:
Example:
nav#site-navigation {
background-image: url(https://dolgospenz.hu/wp-content/uploads/2020/11/Money-growing-header.png);
background-size: cover;
background-position: top;
}
You can play around with the values to see what works to your preference.
Many thanks - worked perfectly!
No problem. :)