Okay
  Public Ticket #2374930
body border & navigation query
Closed

Comments

  •  1
    thenimo started the conversation

    Hey there, 

    1) I would like to add the body border (passepartout) on mobile

    2) I'd like the header navigation to be in-grid

    Could you help? Thank you!

  •  8,886
    Tahir replied

    Hey Again,

    1. I am afraid thats not possible as doing so using css would overlap the content: http://prntscr.com/s56xim .

    2. Could you elaborate what exactly you mean ?.

    Thanks


    ThemeNectar Support Team 

  •  1
    thenimo replied

    Hey Tahir, 

    1) Okay, you're probably right.

    2) I wanted to align the logo and the hamburger menu with the content width, as I see that the navigation header turns full-width when scaled down below 1000px but the content remains in-grid. I hope that was clear?

    Thanks for all the hard work you're doing btw

  •  8,886
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    @media only screen and (max-width: 999px) and (min-width: 1px) {
        body[data-slide-out-widget-area-style="slide-out-from-right-hover"][data-slide-out-widget-area="true"][data-user-set-ocm="off"] #header-outer header > .container {
            padding: 0 28px !important;
        }
        h1.vc_custom_heading {
            left: -7px;
            position: relative;
        }
    }

    Thanks


    ThemeNectar Support Team