Okay
  Public Ticket #2013836
Layout Width
Closed

Comments

  •  1
    selibre started the conversation

    Hello!

    Is there an option to change the normal desktop width on the page? (currently I see is 1200px, too small for bigger screens). I did a test changing in cutom css but break completely the responsive.

    So, there is a solutionfor this?

    Thanks in advance! : )

  • [deleted] replied

    Hi Selibe,

    Please just add the code below to your Custom CSS area:

    /* Body: Large Screens bigger containers */
    @media (min-width: 1400px) {
        .container, .content-area {
            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, .content-area {
            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;
        }
    }

    Have a nice weekend!

  •  1
    selibre replied

    Thank you very much!

    Another quick question, to put some logos on the footer I have to handmade it on the footer.php or there is another way?

    Thanks in advance!

  • [deleted] replied

    Hi selibre,

    Happy to hear thatsmile.png

    Regarding your further questions, kindly open a new ticket and post your request so it will be helpful for the other users to take advantage of searching them on the forum. We’re glad to help you in your new thread.

    Will set this ticket as solved from here.