Site logo

Archived topic

remove border on off canvas panel.

3 replies · Started by Jusung on January 8, 2023

Viewing posts 1–4 of 4

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?

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;
    }
}

Thank you!!

You're welcome, Jusung!

This archived topic is closed to new replies.