Hi,
Sorry for the inconvenience. Your CSS code above was almost correct, you just missed the curly braces from their parent selector. Here is the corrected CSS you can apply now in your themes Additional CSS menu.
@media ( min-width: 992px ) {
.atbd_content_active #directorist.atbd_wrapper .atbdp_column {
max-width: 33.333333333333% !important;
}
}
@media (max-width: 767px) {
.atbd_content_active #directorist.atbd_wrapper .atbdp_column {
width: 50% !important;
}
}
@media (max-width: 575px) {
.atbd_content_active #directorist.atbd_wrapper .atbdp_column {
width: 100% !important;
}
}
Thanks.