Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1207325
    kearneycreativegr
    Participant

    I want to make my header invisible so that I can have my video playing and have the logo and menu just sitting over it. Right now I have it setup like the image shows that is attached.

    Thanks in advance for your help!

    #1207731
    Christopher
    Moderator

    Hi there,

    Your attachment didn’t upload, please try again.
    Please provide us with your website URL.

    Thanks.

    #1223875
    kearneycreativegr
    Participant

    http://www.kearneycreative.com/

    I want to make the header transparent so that the header logo and menu sit on top of the top image, is this possible?

    #1224032
    Rahul
    Moderator

    Hey There,

    Thanks for writing in!

    Please add this CSS at Appereance > Customizer > Custom > CSS :

    .x-navbar-inner {
    background-color: transparent !important
    }

    Hope this helps, let us know how this goes!

    #1224230
    kearneycreativegr
    Participant

    It didn’t change anything once entered. Any suggestions?

    Website:
    http://www.kearneycreative.com

    #1224455
    Joao
    Moderator

    Hi there,

    Please remove the previous code and add the following code:

    Please add the following code to Appereance > customizer > Custom > CSS

    .x-navbar {
        background: none;
        border: none;
        margin-bottom: -63px;
    }

    Thanks

    Joao

    #1226546
    kearneycreativegr
    Participant

    How do I fix this issue with mobile menu?

    #1226550
    kearneycreativegr
    Participant

    and is there also a way that the desktop version stays clear when at the top but as you scroll down it turns to have a background color?

    #1226568
    Thai
    Moderator

    Hi There,

    Please add the following CSS:

    @media (max-width: 979px){
        .x-navbar {
            margin-bottom: 0;
        }
    }
    .x-navbar .mobile .x-nav li a {
        color: #000;
    }
    .x-navbar.x-navbar-fixed-top {
        background-color: rgba(255, 255, 255, 0.7)
    }

    Hope it helps 🙂

    #1226604
    kearneycreativegr
    Participant

    Still running into issues with the mobile menu!

    #1226647
    Thai
    Moderator

    Hi There,

    Please update the CSS to:

    @media (max-width: 979px){
        .x-navbar {
            margin-bottom: 0 !important;
        }
    }
    .x-navbar .mobile .x-nav li a {
        color: #000;
    }
    .x-navbar.x-navbar-fixed-top {
        background-color: rgba(255, 255, 255, 0.7)
    }
    #1234874
    kearneycreativegr
    Participant

    Is it possible to make the header in mobile transparent like it is in desktop mode.

    #1235152
    Joao
    Moderator

    Hi There,

    Please remove the following code:

    @media (max-width: 979px){
        .x-navbar {
            margin-bottom: 0 !important;
        }
    }

    Hope it helps

    Joao

    #1235885
    kearneycreativegr
    Participant

    Exactly What I needed! But now when I drop down the mobile menu the color that shows up doesn’t go all the way to the bottom of the menu? Also how do I change the color?

    #1236195
    Rad
    Moderator

    Hi there,

    Negative margins shouldn’t be used as much as possible when not really needed. It causes the chain of issues to the layout. Relative positioning is there for that reason. But since it’s already there, let’s add this CSS too.

    @media (max-width: 979px) {
    .x-nav-wrap.mobile.collapse.in {
        display: block;
        padding-bottom: 63px;
    }
    }

    That should fix it, it will negate the previous negative margin. Make sure you don’t remove the negative margin.

    Thanks!

  • <script> jQuery(function($){ $("#no-reply-1207325 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>