Okay
  Public Ticket #481336
Swap position of Logo and Main Menu
Closed

Comments

  •  6
    Richard started the conversation

    Hello!

    Is it possible to swap the position of the header logo and the menu? The Logo has to be on the right side, the menu on the left position.

    Greets.

  •  8,851
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :

    #header-outer .row .col.span_3 {
        float: right !important;
    }
    #header-outer .row .col.span_9 {
        float: left !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  6
    Richard replied

    PERFECT! Works great, thank you!

  •  6
    Richard replied

    Hello! In newer versions of this theme, the code no longer has any effect. Is it still possible to swap the position of the logo and menu?

  •  8,851
    Tahir replied

    Hey,
    Please provide the page URL so I may write up the custom CSS for this request.
    Thanks


    ThemeNectar Support Team 

  •  6
  •  8,851
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    @media only screen and (min-width: 1000px) {
        #header-outer[data-format="default"] #top .span_9 {
            margin-right: auto !important;
            margin-left: 0px !important;
        }
        #header-outer:not([data-format="left-header"]) #top > .container > .row {
            flex-direction: row-reverse !important;
        }
    }

    Thanks


    ThemeNectar Support Team 

  •  6
    Richard replied

    Thank you, phantastic!