Skip to main content

Command Palette

Search for a command to run...

More Columns on Tablet/Mobile

Published
1 min readView as Markdown
/* TABLET */

@media only screen and (max-width: 980px) {

.two-columns .et_pb_column {
width: 50%!important;
}

.three-columns .et_pb_column {
width: 33.33%!important;
}

.four-columns .et_pb_column {
width: 25%!important;
}
.five-columns .et_pb_column {
width: 20%!important;
}
}

/* MOBILE */ 
@media only screen and (max-width: 479px) {
    .three-columns .et_pb_column {
    width: 50%!important;
}
}
17 views