Okay
  Public Ticket #164391
How can I remove the logo from the top header?
Closed

Comments

  • Neal started the conversation
    I have added my logo separately, and wanted to left-justify the top menu, and hide the logo.
  •  1,069
    ThemeNectar replied

    Hey Neal,

    add this into the Custom CSS box located in your Salient Options panel:

    body header#top .span_3 {
      display: none!important;
    }
    
    body header#top .span_9 {
      width: 100%!important;
    }
    
    body header#top nav ul {
        float: left!important;
    }
    
    

    Cheers :)