Okay
  Public Ticket #1322340
Standard container max-width
Closed

Comments

  •  2
    HL started the conversation

    This might be a beginner-question, but I could not find a clear answer (nor in the  Kalium documentation nor in this forum):

    What's the standard max container with of the Kalium theme?

    And can it easily be changed with CSS side-wide?

    Thanks for your help.

  • [deleted] replied

    Hi HL,

    Pages that are build with Visual Composer can easily change the width of container please see the following link :Full Width Row, bug pages that are more static category, blog template, single post etc, you can modify bootstrap classes see the default setting:

    .container {
        margin-right: auto;
        margin-left: auto;
        padding-left: 15px;
        padding-right: 15px
    }
    @media (min-width: 768px) {
        .container {
            width:750px
        }
    }
    @media (min-width: 992px) {
        .container {
            width:970px
        }
    }
    @media (min-width: 1200px) {
        .container {
            width:1170px
        }
    } 

    Thank you.