Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1252026
    Flightwave
    Participant

    Hi there,

    X support helped me to correctly position our logo in line with the top nav menu items – using custom css.

    But now – when you make the screen smaller – as in “medium, small, or extra small) and it moves to the mobile version – the F (our logo) is smashed to the top of the nav menu and looks weird. See screenshots to compare.

    Also – in the small (mobile) version – what is that little plus sign in the upper right corner – what is that for and how can I get rid of it if I don’t want it?

    Thanks,
    Chris

    #1252031
    Flightwave
    Participant
    This reply has been marked as private.
    #1252355
    Jade
    Moderator

    Hi there,

    To get rid of the + icon on the top right of the page, go to Appearance > Customizer > Header > Header Widget Areas : None (Disabled)

    Then add this code in the customizer:

    @media (max-width: 979px) {
        .x-brand.img {
            width: 100%;
        }
    }

    Hope this helps.

    #1254006
    Flightwave
    Participant

    That did help get rid of the + sign – thank you!

    As for the logo positioning, this doesn’t really accomplish what we want. Let me see if I can describe it better.

    In large (computer/laptop) viewing mode – the “F” logo is vertically centered in the nav menu (top to bottom) to be in line with the other menu items.

    When you change the view to small (for ipad / mobile phones) – the “F” logo is smashed all the way to the top of the nav-menu bar. I’d prefer it stay vertically centered (equidistant from the top and bottom of the black nav-menu bar area).

    How do I accomplish this?

    Thanks!
    Chris

    #1254200
    Rue Nel
    Moderator

    Hello Chris,

    To resolve your logo, I can see that you have added a custom css in the customizer. You have this:

    a.x-brand.img {
        position: relative;
        top: -10px;
    }

    Please have it updated and make use of this code instead:

    @media(min-width: 980px){
      a.x-brand.img {
        position: relative;
        top: -10px;
      }
    }
    
    @media(max-width: 979px){
       a.x-brand.img {
        position: relative;
        top: auto;
        margin-top: 10px;
      }
    } 

    Please let us know if this works out for you.

    #1259709
    Flightwave
    Participant

    Rue Nel – you are brilliant my friend. Thanks!!

    #1259726
    Nico
    Moderator

    Happy to hear that.

    Feel free to ask us again.

    Thanks.

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