elementor/elementor

[Feature Request] Reverse column on tablet

dam62500 opened this issue · 7 comments

Hello,

I think it's a good features to allow reverse columns for tablets like mobile feature.

+1

Is it shameful for me to put a bump on this one? It seems like a simple thing to implement no?

+1

Any news about that? we can add it very easily. Otherwise, I have a solution. Simply add this css code to your stylesheet and add the class to the section containing the columns.

@media screen and (max-width: 1024px) {
  .elementor-reverse-tablet > .elementor-container > .elementor-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

just perfect solution @dam62500