Archived topic
No Padding Mobile Home Page
3 replies · Started by Stuart on November 22, 2020
Hi there,
I am doing a static homepage using WP Show Posts, my mobile version has no padding on the sides, attached is picture showing.
Any simple CSS to add a bit of side padding on the homepage only?
Pic: https://imgur.com/a/JGMusVm
Thanks
Hi,
Any simple CSS to add a bit of side padding on the homepage only?
You can use body.home as a css selector to apply your style specifically to your homepage only.
Try this CSS:
@media (max-width:768px){
body.home .entry-content{
padding: 0 30px;
}
}
Perfect,
Thanks Elvin :)
Nice one.
No problem. :)