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 #2164097
smartphone site
Closed

Comments

  • 10moya started the conversation

    Hi

    How can I display two columns on my smartphone screen? like recent posts.

    ・LATEST POSTS(TOP page)

    ・category pages
     https://locabikitchen.com/category/main_dish/

  •  2,699
    PenciDesign replied

    Hi,

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

    @media only screen and (max-width: 767px){
    .container.penci_sidebar .penci-grid > li {
        width: 47% !important;
        margin-right: 6% !important;
    }
    .container.penci_sidebar .penci-grid > li:nth-child(2n+2){
        margin-right: 0 !important;
    }
    .container.penci_sidebar .penci-grid > li:nth-child(2n+1){
        clear: both !important;
    }
    }
    

    Best Regards,

    PenciDesign

  • 10moya replied

    Thank you very much.