Site logo

Archived topic

Mobile Menu Help!

11 replies · Started by Paul on January 29, 2023

Viewing posts 1–12 of 12

I’m trying to get a mobile menu similar to this but there are too many parts for my small brain!!

Here is what I’m trying to achieve -
https://imgur.com/a/7dNLz5v

Thank you!

Thank you!

So I have that part pretty much all set - I’m looking to see if I can add borders underneath that to the whole way and add little arrows or an icon like in the sample.

Also is there a way when the menu slides out to have it below the header and not cover it?

Thank you so much!

Paul

To add the lines and the arrow, here's something you can try adding through Appearance > Customize > Additional CSS:

.main-nav > ul > li:after {
    content: "\27A4";
    margin-right: 8px;
}

.main-nav > ul > li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: solid 1px #fff;
}

Here's something you can try to put the Off canvas a bit below the Header:

nav#generate-slideout-menu {
    top: 99.5px;
    background-color: red;
    height: calc(100vh-60px);
}

This is amazing!!!! Thank you!!!! One more thing - is it possible to not have the dark screen over the body of the website when the menu is open?

You're welcome! It's possible.

Try adding this as well:

body.offside-js--is-open .slideout-overlay {
    opacity: 0;
}

This is amazing!! Thank you so much! One. Oh e quick question
- is it possible to get rid of this X icon on the pull out menu?

Here it is circled:
https://imgur.com/a/ZJegJIa

Can you try adding this?:

nav#generate-slideout-menu button.slideout-exit{
    display: none;
}

Totally perfect!! You and the entire crew over there are so awesome!!

Life Long customer for sure!!

Thank you!!

You're welcome, Paul! Have a nice day!

This archived topic is closed to new replies.