Important:
This support area is for Kalium 3 users only.
Support for Kalium 4 has moved to our new platform at support.laborator.co.
If you’re using Kalium 4, please create a new account there using your email and license key. A password will be sent to you automatically.
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!
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!