Portfolio page on mobile to have 2 columns

I have set my portfolio page to have 3 columns. On the mobile device this is converted to 1 column. How can I change the S &XS screen to two columns?

Hi There,

To achieve that, please add this custom CSS under Theme Options > CSS:

@media (max-width: 767px){
    .page-template-template-layout-portfolio-php .x-iso-container[class*="cols-"]>.hentry {
        width: 49.95%;
    }
}

If you would like to learn the custom CSS for small devices only, please take a look at this:

Hope it helps :slight_smile:

Yes. It worked perfectly. Thanks so much.

You’re most welcome!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.