Hello, how can I change the margins to smaller or larger

    nikolasf Hi

    It's padding value set for the main body section in template. You can override this css rule:

    @media (min-width: 768px) {
        .t4-main-body {
            padding-top: 4.5rem;
            padding-bottom: 4.5rem;
        }
    }
    
    #t4-main-body .t4-row>div {
      padding-left: 18px;
      padding-right: 18px;
    }

    and adjust to suit your need.

    Thanks for the help, everything is fine
    Can you also tell me which file is for the internal margins in the articles

      nikolasf Hi

      The above css rule should affect the margin in articles as well, if it doesn't work on your site, you can share me the URL of that page so I will take a look.

      Regards

      I refer to these spaces in the Category Blog Layout

        nikolasf You can try this custom css:

        .blog-items .item.article-item.col {
            padding-left: 5px;
            padding-right: 5px;
        }
        Write a Reply...
        You need to Login to view replies.