Change order of Divi columns when stacking for mobile

PHOTO EMBED

Tue Feb 22 2022 19:30:31 GMT+0000 (Coordinated Universal Time)

Saved by @MakiProductions #css #divi #wordpress

@media (max-width: 980px) {
.forceRowOrder {
	display: flex;
  flex-wrap: wrap;
}

.Order1 {
	order: 1;
	margin-bottom: 30px !important;
}

.Order2 {
	order: 2;
	margin-bottom: 0px !important;
}
}
content_copyCOPY

Add the forceRowOrder class to the row, then Order1, Order2 classes to each column depending on how you want them to stack in tablet/mobile.