Okay
  Public Ticket #1900889
extend default site width size
Closed

Comments

  •  20
    Zoe started the conversation

    Hi,

    I'm just wondering, is it possible to extend the default size of the container so it's more like 1400px instead of 1150px. My guess is you'll say no, but just thought I'd ask...

  •  1,560
    Laborator replied

    Hi Zoe,

    This is the CSS we use in our Fashion demo, it should work for you too so give it a try by pasting the following code to Custom CSS:

    /* Body: Large Screens */
    @media (min-width: 1400px) {
        .container, .content-area {
            width: 1370px;
            max-width: 1370px;    
        }
        
        .vc-container .vc-parent-row.row-stretch_row>.vc_row,
        .vc-container .vc-parent-row.row-default {
            width: 1370px;
            max-width: 1370px;    
        }
    }
    /* Body: Large Screens */
    @media (min-width: 1600px) {
        .container, .content-area {
            width: 1570px;
            max-width: 1570px;    
        }
        
        .vc-container .vc-parent-row.row-stretch_row>.vc_row,
        .vc-container .vc-parent-row.row-default {
            width: 1570px;
            max-width: 1570px;    
        }
    }
    

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group

  •  20
    Zoe replied

    P E R F E C T! 

    thank you so much! Zoe

  •  1,560
    Laborator replied

    You're welcome Zoe, have a great daysmile.png

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group