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;
        }
    }