Okay
  Public Ticket #3485068
Header
Closed

Comments

  •  4
    Robert started the conversation

    Hi, can I please get some help with an annoying issue with the header/menu on my website - www,deadw8.au - on all pages except one the space between the logo and "Home" on the header is 1cm (image 1) but on "Members Parts Listings" page it is 3cm and menu items are pushed closer together (image 2). I have tried looking at page settings but can't see any differences, what could be causing this

    Attached files:  Image 1.JPG
      Image 2.JPG

  •  8,471
    Tahir replied

    Hey Again,

    That page is loading a Bootstrap class which is conflicting with the Header columns

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    #header-outer[data-format=default] #top .col {
        padding: 0px !important;
        flex-grow: 0;
        flex-basis: auto;
    }

    Thanks


    ThemeNectar Support Team 

  •  4
    Robert replied

    Hi, I added the Custom CSS however that caused a different issue with the header/menu - see attached image.

    Thanks

    Robert

    Attached files:  Image 3.JPG

  •  1,665
    Judith replied

    Hi Robert,

    Thanks for writing back.

    Please enter this CSS:

    .page-id-245 .col.span_3 {
        max-width: 16%;
    }

    I hope this helps.

    Kind Regards.

  •  4
    Robert replied

    Thanks Judith, that fixed the issue. Great service as usual from Nectar.

    Robert

  •  1,665
    Judith replied

    Hi Robert,

    You're welcome.

    It is our pleasure to give you quality and prompt support.

    Please feel free to open a new ticket in case of any other queries.

    Kind Regards.

  •  4
    Robert replied

    Hi, you helped me with my header before, could you please have another look at my header & let me know how to space the menu out to fill up the blank spaces at each end better. Thanks Robert

    Attached files:  header.JPG

  •  8,471
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    @media only screen and (min-width: 1000px) {
        #header-outer[data-format=centered-menu] #top .span_9 nav .sf-menu:not(.buttons) {
            display: flex;
            justify-content: space-between;
        }
    }

    Thanks


    ThemeNectar Support Team 

  •  4
    Robert replied

    Thanks Tahir, fixed & looking much better.