Archived topic
Right padding only on mobile in section custom html and query loop
1 reply · Started by Artur on December 3, 2022
Viewing posts 1–2 of 2
https://toprawnik.pl/adwokat-dorota-tumkiewicz/
How to fix it?
Hi there,
you have this CSS on your site:
.tabcf {
padding: 20px 40px 20px 0;
}
Which is adding additional right padding on all devices. You need to limit that to desktop eg.
@media(min-width: 769px) {
.tabcf {
padding: 20px 40px 20px 0;
}
}
This archived topic is closed to new replies.