Site logo

[Resolved] border under menu

Home Forums Support [Resolved] border under menu

Home Forums Support border under menu

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #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?

    #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.

    #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..?

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

    #2488688
    Jusung

    that code seems working but the thing is that, on other page, the padding-bottom:10px is not applied..

    #2488728
    David
    Staff
    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;
        }
    }
    #2488742
    Jusung

    Thank you!!

    #2488743
    David
    Staff
    Customer Support

    You’re welcome

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