[Resolved] Remove border on Off Canvas Mobile Menu

Home Forums Support [Resolved] Remove border on Off Canvas Mobile Menu

Home Forums Support Remove border on Off Canvas Mobile Menu

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #1145153
    Ian

    How do I remove the yellow border around the mobile menu?

    #1145174
    Leo
    Staff
    Customer Support
    #1145191
    Ian

    Hi Leo,

    I like the mobile responsive menu, I just want to remove the border as shown in the video below.

    https://www.loom.com/share/3ecd6ad4f67c4d34909553db55aa6d5d

    Cheers,
    Ian

    #1145194
    Leo
    Staff
    Customer Support

    Currently you are using this CSS for the bottom border:

    .main-navigation ul {
        border-bottom: 1px solid #ffc43d;
    }

    You can wrap it in media query like this so it only applies to desktop:

    @media (min-width: 769px) {
        .main-navigation ul {
            border-bottom: 1px solid #ffc43d;
        }
    }
    #1145218
    Ian

    It did not seem to work. Maybe cache.

    #1145223
    Ian

    It was a cache issue and it did work. Thank you!

    #1145885
    Leo
    Staff
    Customer Support

    No problem 🙂

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.