Okay
  Public Ticket #152104
Layout width adjustment
Closed

Comments

  • Mark started the conversation
    hi, It's a GREAT theme, I love it! one question is: I use the boxed, responsive layout in the theme, but i don't want to use the biggest layout (width is 1200px), I want the biggest layout is the 980px(2nd big width in the theme), can you help how to modify it? Thanks! Mark
  •  1,043
    ThemeNectar replied

    Hey Mark!

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

    @media only screen and (min-width: 1300px) {	
     
       #boxed {
          width: 980px!important;
       }
       .container {
         max-width: 880px!important; 
       } 
    }
    

     

  • Mark replied

    hi, Thanks for the reply,

    the content works fine but the menu (header) is'nt, can you help? Thanks a lot again. :)

    Mark

  •  1,043
    ThemeNectar replied

    Hey again!

    Change that snippet to this:

    @media only screen and (min-width: 1300px) { 
         #boxed {     
             width: 980px!important;
         } 
         .container { 
             max-width: 880px!important; 
         } 
    
         body #boxed #header-outer, body #boxed #header-secondary-outer, body #boxed #page-header-bg { 
            min-width: 980px!important;  
         }
    
    }
    

    Cheers!

  • Mark replied

    hi,

    It works perfectly! Thanks for the help!

    Mark