Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #980224

    Is it possible to change the order of the layout on the phone.
    Because now you get 2 photo’s back to back. Does not look right

    #980238

    Hey studioinktvis,

    You could create a second version of the section and change the order and use classes like this for each respective section so that the proper order that you desire appears on the respective device:

    .only-mobile{
        display: block !important;
    }
    .only-desktop{
        display: none !important;
    }
    @media only screen and (min-width: 767px) {
        .only-mobile{ 
            display: none !important;
        }
        .only-desktop{
            display: block !important;
        }
    }
    

    Best regards,
    Jordan Shannon

    #980242

    Did not think of that, thanks!

    #980245

    Hi,

    No problem at all my friend. If you need further help please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.