----------- /* Target small screens (768px or below) */ @media (max-width: 768px) { /* Assuming columns have classes .column1 and .column2 */ .elementor-row { display: flex; /* Ensure flexbox layout */ flex-direction: column; /* Stack columns vertically */ } .column1 { order: 2; /* Moves the first column to the second position */ } .column2 { order: 1; /* Moves the second column to the first position */ } } ``` *Please Note:* You can define more than one breakpoint as needed; in this example, we have used 768px. *Classes Used:* - .elementor-row - .column1 - .column2 ---
-----------
/* Target small screens (768px or below) */
@media (max-width: 768px) {
/* Assuming columns have classes .column1 and .column2 */
.elementor-row {
display: flex; /* Ensure flexbox layout */
flex-direction: column; /* Stack columns vertically */
}
.column1 {
order: 2; /* Moves the first column to the second position */
}
.column2 {
order: 1; /* Moves the second column to the first position */
}
}
```
*Please Note:* You can define more than one breakpoint as needed; in this example, we have used 768px.
*Classes Used:*
- .elementor-row
- .column1
- .column2
---