Okay
  Public Ticket #1727106
Mobile & Tablet Logo
Closed

Comments

  • JamieBurrell91 started the conversation

    I want to be able to centre align the logo on both a mobile and on tablets? What is the easiest way to do this? 

  •  8,998
    Tahir replied

    Hey,

    Please provide the page url so that i can write up the custom css for whats possible.

    Thanks


    ThemeNectar Support Team 

  •   JamieBurrell91 replied privately
  •  8,998
    Tahir replied

    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) and (min-width: 1px) {
        header#top .col.span_3 {
            text-align:center !important;
            margin-left: 0px !important;
        }
    }

    Thanks


    ThemeNectar Support Team 

  • JamieBurrell91 replied

    Brilliant! 

    Another thing. 


    I am trying to increase the width of the left hand menu. I have gone through the CSS and changed the width but that seems to effect the full width content on the page. 


    Could you tell me how to increase the width of it please. :) 

  •  8,998
    Tahir replied

    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: 1001px) {
        body[data-header-format="left-header"] #ajax-content-wrap {
            margin-left: 315px;
        }
    }
    @media only screen and (min-width: 1001px) {
        #header-outer[data-format="left-header"] {
            width: 315px;
        }
    }

    Thanks


    ThemeNectar Support Team