Site logo

Archived topic

custom background image for off canvas menu

3 replies · Started by JBD on October 1, 2019

Viewing posts 1–4 of 4

Is there a way to use a custom background image for the full screen off canvas menu?

Can this be further customised with different off canvas backgrounds for mobile vs desktop?

Many thanks

Hi there,

requires some CSS like so:

/* Desktop */
.main-navigation.slideout-navigation {
    background-image: url('full_url_to_image/image.jpg');
}
/* Mobile */
@media (max-width: 768px) {
    .main-navigation.slideout-navigation {
        background-image: url('full_url_to_image/image.jpg');
    }
}

Works perfectly. Many thanks.

You're welcome

This archived topic is closed to new replies.