Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1397164
    darwinsm81
    Participant

    Hi,

    I want to lower the breaking point on the website that I am working on. I have tried different methods from several other threads on the same topic with no prevail. Also, can I change the style of the mobile menu – I would like to show the buttons (centered) while the header is fixed.

    Thanks

    #1397363
    Paul R
    Moderator

    Thanks for writing in! To assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.

    #1397886
    darwinsm81
    Participant

    Hi Paul,

    Thank you for your speedy response. Here is the address – http://www.darwinlopez.com.

    #1398609
    Lely
    Moderator

    Hello Darwin,

    Try using this custom CSS:

    @media (max-width: 979px){
        .masthead-inline .x-btn-navbar {
           display: none;
        }
        .x-nav-wrap.desktop {
           display: block;
        }
    }
    @media (max-width: 767px){
        .masthead-inline .x-btn-navbar {
           display: block !important;
           float:right !important;
           margin-top: 30px; /*Vertically center the mobile button*/
        }
        .x-nav-wrap.desktop {
           display: none !important;
        }
        body.x-navbar-fixed-top-active .x-navbar { /*To make header fixed on mobile*/
           position: fixed;
           top: 0;
           left: 0;
           right: 0;
       }
    }

    767px is the new breaking point from 979px. Adjust 767px accordingly.

    Hope this helps.

    #1400806
    darwinsm81
    Participant

    you guys are awesome! it worked perfectly!!

    Thank you for your assistance.

    #1401034
    Jade
    Moderator

    You’re most welcome.

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