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

    Hi there,
    I have 2 columns in my page (one with content, one has image). Currently the content column in on the left side. In mobile, I want the image column to be on top. How do I set that?
    Thanks!

    #787393

    Hey wolfblast,

    you could create an extra column just for mobile devices, which you can hide on desktop.

    Best regards,
    Andy

    #788992

    How do I hide it on desktop?

    #788996

    Hi,
    You could create a class for that column and use display:none for it in your css for mobile:

    @media only screen and (max-width: 767px) { 
    .hidden-class {
    display:none !important; 
    }}

    Best regards,
    Mike

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