Okay
  Public Ticket #1453526
Centre logo on mobile
Closed

Comments

  •  21
    Simon started the conversation

    Hi.

    Is there a way to centre the logo on mobile.

    Thanks, Si

  •  9,086
    Tahir replied

    Hey Again,

    I see you added the custom css already . 

    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):

    #header-outer[data-format="centered-logo-between-menu"] .span_3 #logo:not(.no-image) img {
        transform: none !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  21
    Simon replied

    Thanks for such a speedy response.

    I've added that CSS but it doesn't seem to centre properly?

    Any ideas?

  •  9,086
    Tahir replied

    Kindly remove all the css you added regarding the logo and paste it here so i can select the one that is actually needed. 

    b.est 


    ThemeNectar Support Team 

  •  21
    Simon replied

    Hi Tahir

    I've removed all the css so it's blank now.

    New URL at: http://650bridge.com.au

    Thanks, Si

  •  9,086
    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 (max-width: 1000px) {
        #header-outer[data-format="centered-logo-between-menu"] .span_3 #logo:not(.no-image) img {
            -ms-transform: translateX(-50%) !important;
            transform: translateX(-50%) !important;
            -webkit-transform: translateX(-50%) !important;
        }
        #header-outer[data-format="centered-logo-between-menu"] .span_3 {
            left: 50%!important;
        }
    }

    Thanks


    ThemeNectar Support Team 

  •  21
    Simon replied

    Thank you!