divi reverse column order for mobile

Solutions on MaxInterview for divi reverse column order for mobile by the best coders in the world

showing results for - "divi reverse column order for mobile"
Lorenzo
08 Apr 2019
1
2@media screen and (max-width: 768px) {
3
4/* Add this class in row */
5.ReverseEnableRow{
6		display: flex;
7    flex-direction: column-reverse;
8	}
9
10  /* Add some space */
11	.ReverseEnableRow>.et_pb_column:first-child {
12    margin-top: 28px;
13}
14
15
16	
17}