Site logo

[Resolved] remove border on off canvas panel.

Home Forums Support [Resolved] remove border on off canvas panel.

Home Forums Support remove border on off canvas panel.

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2488323
    Jusung

    When you see the off canvas panel, you can see there is a border.
    I think it is because I added it on main navigation..?

    Is there a way to remove the border on off canvas panel?

    #2488339
    Fernando
    Customer Support

    Hi Jusung,

    Replace this code you have in Appearance > Customize > Additional CSS:

    @media(min-width: 769px) {
        .main-navigation {
    		padding-top: 30px;
        }
    .home .main-navigation .inside-navigation {
        border-bottom: 1px solid #848484;
    		padding:20px;
    	}
    }

    with this:

    @media(min-width: 769px) {
        .main-navigation:not(.slideout-navigation) {
            padding-top: 30px;
        }
    
        .home .main-navigation:not(.slideout-navigation) .inside-navigation {
            border-bottom: 1px solid #848484;
            padding: 20px;
        }
    }
    #2488353
    Jusung

    Thank you!!

    #2488364
    Fernando
    Customer Support

    You’re welcome, Jusung!

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