Hi
I’ve just uploaded the awards on this page https://theimplantcentre.com/why-choose-us/our-awards/ but would like them to reduce from 5 columns to 3 when viewed at tablet width and 2 columns when viewed on a mobile.
Many thanks
Rupert
Hey Rupert,
Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (min-width: 768px) and (max-width: 1024px) {
.page-id-64 #av_section_1 .av_one_fifth {
width: 25% !important;
}
}
Best regards,
Rikard
Thanks Rikard, that doesn’t seem to have worked:
https://theimplantcentre.com/wp-content/uploads/2017/01/Screen-Shot-2017-01-16-at-09.52.23.png
https://theimplantcentre.com/wp-content/uploads/2017/01/Screen-Shot-2017-01-16-at-09.52.43.png
Hi,
You had some errors in your custom CSS code. I fixed them and then gave unique ID to your color section and added following code to Quick CSS
@media only screen and (max-width: 1024px) and (min-width: 768px) {
#awards .flex_column {
width: 29%;
}
#awards .flex_column:nth-child(4), #awards .flex_column:nth-child(9) {
margin-left: 0;
}}
@media only screen and (max-width: 767px) {
#awards .flex_column {
width: 50%!important;
}}
Please review your website now
Best regards,
Yigit