Okay
  Public Ticket #1900671
Body/Header width
Closed

Comments

  •  1
    mattiacattaneo started the conversation

    Hello,

    I would like to ask if is it possible, in one page, reduce the content width without reduce the header width. I would like to have some page with a narrower layout but I would like the header always the same.

    I tried with this but the header follow the body reducing:

    @media only screen and (min-width: 1300px) {
      .container {
        max-width: 1100px!important;  
      } 
    }

    Thank you.

    Mattia


  •  75
    Scott replied

    Hey there,

    Thanks for reaching out,

    You would have to tie your CSS to that particular page id for it to work.

    Regards

    Themenectar Support Team

  •  1
    mattiacattaneo replied

    Thank you Scott.

    I modify my CSS with this:

    @media only screen and (min-width: 1300px) {
      .vc_row {
        max-width: 1000px!important;
        display: block;
        margin-left: auto;
        margin-right: auto
      } 
    }

    and it works!

    Thank you