Archived topic
remove right padding on tablet device.
3 replies · Started by Jusung on September 9, 2022
Viewing posts 1–4 of 4
When you see the blog page on table device,
you are supposed to see 2 articles on a line.
When you closely see that, there is no padding on the left but there is padding on the right.
Is there a way to remove the right padding on tablet device?
Thank you!
Hi there,
try this CSS:
@media(max-width: 1024px) and (min-width: 769px) {
:is(.blog, .archive).separate-containers .site-main {
margin-right: 0;
}
}
Thank you!!
It works perfectly!
Glad to hear that !
This archived topic is closed to new replies.