Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2478233
the grid layout of the homepage is show in 3 column
Closed

Comments

  • boxfulblog started the conversation

    I have try to make the homepage in elementor. I add the penci featured cat, and set to "style 7 grid layout". I want that should be 2 column, but that is in 3 column.

    would i change it to 2 column?

  •  2,699
    PenciDesign replied

    Hi,

    Please try add more this code to Customize > Custom CSS to do that:

    @media only screen and (min-width: 768px){
        .penci-featured-cat-sc .penci-grid > li{
            width: 48.05%; margin-right: 3.9%;
        }
        .penci-featured-cat-sc .penci-grid li:nth-of-type(3n+3){
            margin-right: 3.9%;
        }
        .penci-featured-cat-sc .penci-grid li:nth-of-type(2n+2){
            margin-right: 0;
        }
        .penci-featured-cat-sc .penci-grid > li:nth-of-type(3n+1){
            clear: none;
        }
        .penci-featured-cat-sc .penci-grid > li:nth-of-type(2n+1){
            clear: both;
        }
    }
    

    Best Regards,

    PenciDesign