Okay
  Public Ticket #1377238
Site/page width
Closed

Comments

  • mxewdwp started the conversation

    Hello, just wondering if it is possible to adjust the fixed width for my site? I would like to make it a bit wider but not full-width. Hope this is possible. Thanks!

  • [deleted] replied

    Hi mxewdwp,

    Maybe this CSS code can help you to make this possible. Please just add the code below to your Custom CSS area:

    /* Body: Large Screens */
    @media (min-width: 1400px) {
        .container {
            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 {
            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;    
        }
    }

    Thanks!