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.

Okay
  Public Ticket #1128687
Site width
Closed

Comments

  • Kateotte started the conversation

    Hi, I was wondering how I can change the width of my site—it is slightly narrower than I'd like it to be. I don't see anything in the visual composer code that defines the width of the site.

  • [deleted] replied

    Hi Kateotte,

    Our site width is based on Bootstrap Grid System, if you want to change the width for the large (desktop website) you must edit your changes with CSS through our Custom CSS area.

    For example:

    @media (min-width: 1400px) {
        .container {
            width: 1370px !important;
        }
        .vc-container>.vc_row>.row-container {
            width: 1370px !important;
        }
    }