Archived topic
Background image for Off Canvas menu
4 replies · Started by Yael on March 19, 2021
Hello, I've been using GP for years and only now discovered the Background image option!
And I'm curious why there's no option to add a background image for Off Canvas Panel.
I've read the various support threads about adding background image via CSS, etc but it would be so nice to have the background settings for Off Canvas Panel in the customizer.
I'm sure there's a good reason why it's not an option but wanted to ask.
Thank you
And to follow up on this, I discovered just now that adding a background image to primary navigation also adds to Off Canvas menu.
But that won't work when using Off Canvas Panel for all devises and "hiding" primary menu by creating an empty menu for primary.
Make sense?
Hi there,
the Backgrounds module hasn't been updated since the inception of the Off Canvas Panel.
And yes the primary menu and off canvas share the same HTML - so both get the same image.
If you want to add a background image to just the Off Canvas panel then you can use some CSS:
#generate-slideout-menu {
background-image: url(full_url_to_image);
background-size: cover;
background-repeat: no-repeat;
}
Thank you, David.
You're welcome