Okay
  Public Ticket #2810847
Mobile portfolio Item Layout with 2 columns
Closed

Comments

  •  2
    Jagod8 started the conversation

    Good evening, how is it possible change the view of the portfolio in the mobile version? If I select the portfolio layout with 2 or 3 columns, in the mobile version it always remains with 1 column. 

    Thanks so much

  •  291
    Paul replied

    Hello!

    I am afraid that is the default layout on any small screens and there is no option out of the box to change that, unfortunately. You would need to use custom CSS for the adjustment; please try this:

    @media only screen and (max-width: 380px) {
        .col2 .portfolio-category, 
        .col3 .portfolio-item, 
        .portfolio-category, 
        .portfolio-item {
            float: none;
            display: inline-block;
            margin-right: 8%;
            margin-bottom: 13%;
            width: 40%;
        }
    }
    

    I hope it helps!

    Regards,
    Paul

  •  2
    Jagod8 replied

    Perfect,works, thanks! :)