Okay
  Public Ticket #164387
Increase the size of boxed width container?
Closed

Comments

  • Neal started the conversation
    My client wants a boxed width, but the standard boxed width is too small. Is there any way to extend it?
  •  982
    ThemeNectar replied

    Hey Neal,

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

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

    Cheers :)

  • Brian replied

    I am having the same issue, my client wants the boxed width set at 1408px;. I've tried to do this below, but the home page slideshow show refuses to change, although it works when I apply the code in chrome? Thanks for your help.

    Brian

    @media only screen and (min-width: 1000px) {

    body .container {

    max-width: 1408px!important;

    }

    body #boxed #header-outer, body #boxed #header-secondary-outer, body #boxed #page-header-bg {

    min-width: 1408px;

    }

    body #boxed {

    width: 1408px!important;

    }

    #boxed .home-wrap, #boxed .container-wrap {

    Width: 1408px;

    }

    #boxed #footer-outer #footer-widgets, #boxed #footer-outer #copyright {

    padding-left: 0;

    padding-right: 0;

    width: 1408px;

    }

    #boxed #featured article {

    max-width: 1400px!important;

    width: 90%!important;

    min-width: 980px;

    }

    }

  •  8,406
    Tahir replied

    @Brian ,

    Have replied on your ticket, closing this one. 

    Thanks 


    ThemeNectar Support Team