Home Forums WoodMart support forum main site container

main site container

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #708513

    opalamarchuk.01
    Participant

    How can I change the padding of the main site container? Is it only through styles or is there a setting in the theme?

    Attachments:
    You must be logged in to view attached files.
    #708567

    Aizaz Imtiaz Awan
    Keymaster
    Xtemos team

    Hello,

    From your screenshot, the padding comes from this rule:

    .container,
    .container-fluid {
        padding-inline: 15px;
        margin-inline: auto;
    }

    If you want to override it manually, add this in Theme Settings > Custom CSS

    /* Change global container padding */
    .container,
    .container-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }

    Best Regards,

Viewing 2 posts - 1 through 2 (of 2 total)