Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #873247

    3wdevelop
    Participant

    Website

    Re full-screen video slider, I know the choices are above or below the masthead.

    What I want to do is show it over the full-screen video slider.

    Then,

    I want the menu to appear as normal on the other pages AND I want to dramatically reduce the width of the menu area.

    Is there a way I can do these things?

    Thank You!

    Jerry

    #873876

    Christopher
    Moderator

    Hi there,

    Please add the following code in Customize -> Custom -> CSS :

    @media (min-width:979px){
    .home header.masthead.masthead-stacked {
        margin-top: -178px;
    }
    .home .x-navbar, .home .x-logobar {
        background-color: transparent;
        width: 70%;
        margin: 0 auto;
        box-shadow: none;
        border: none;
    }
    }

    Hope it helps.