Home › Forums › Support › border under menu This topic has 7 replies, 3 voices, and was last updated 3 years, 3 months ago by David. Viewing 8 posts - 1 through 8 (of 8 total) Author Posts January 9, 2023 at 12:29 am #2488492 Jusung I made a border under menu and it is well showing on the front page. However, in other page, the border under menu is gone. Is there a way to make the border appear in other page? January 9, 2023 at 1:33 am #2488535 Fernando Customer Support Hi Jusung, Yes, there’s a way. In this code you have in Appearance > Customize > Additional CSS: @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-bottom: 10px; } } remove the .home. This should make the border appear on all pages as opposed to just the Front Page. January 9, 2023 at 3:48 am #2488677 Jusung On the front page, the border would be white. On other page, the border color would be black. So, I need 2 code for the border I think..? January 9, 2023 at 3:50 am #2488684 Jusung Maybe this works? @media(min-width: 769px) { .main-navigation:not(.slideout-navigation) { padding-top: 30px; } .home .main-navigation:not(.slideout-navigation) .inside-navigation { border-bottom: 1px solid #f4f2f3; padding-bottom: 10px; } .main-navigation:not(.slideout-navigation) .inside-navigation { border-bottom: 1px solid #000407; padding-bottom: 10px; } } January 9, 2023 at 3:54 am #2488688 Jusung that code seems working but the thing is that, on other page, the padding-bottom:10px is not applied.. January 9, 2023 at 4:18 am #2488728 DavidStaff Customer Support Hi there, try this CSS: @media(min-width: 769px) { #site-navigation { padding-top: 30px; } #site-navigation .inside-navigation { border-bottom: 1px solid #000407; padding-bottom: 10px; } .home #site-navigation .inside-navigation { border-bottom: 1px solid #f4f2f3; } } January 9, 2023 at 4:23 am #2488742 Jusung Thank you!! January 9, 2023 at 4:24 am #2488743 DavidStaff Customer Support You’re welcome Author Posts Viewing 8 posts - 1 through 8 (of 8 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In