Okay
  Public Ticket #917504
Right To Left Column Collapse
Closed

Comments

  • Alex started the conversation

    Hello-

    I'm curious if there's a way to set rows up for right to left column collapse on mobile. So that :

    On Desktop :

    A B

    On Mobile :

    B

    A

    I have played around with the column offset and can't get anything to work.

    Thank you!

    -Alex

  • Alex replied

    Got it taken care of by entering the columns in the reverse order (as they should appear on mobile) then adding a css class to the columns that should be pushed to the right on desktop (right-to-left) the and then using this css :

    @media (min-width: 768px) {
    .right-to-left {
    float:right!important;
    }
    }