Tagged: css styling
Can you help me take out spacing on a frontpage by setting the css as applied to the homepage only.
I have css ready which takes out the white spacing…
.container {
padding: 0 0px;
}
.content, .sidebar {
padding-bottom: 0;
padding-top: 7px;
}
If I add this to the Quick Styling CSS what do I need to add so it is only applied to the homepage?
LINK TO HOMEPAGE HERE
Image showing how it should look without the white spaces adjusted in the css above. …
Hi Annemarie!
Use this instead:
.home .container {
padding: 0 0px;
}
.home .content, .home .sidebar {
padding-bottom: 0;
padding-top: 7px;
}
Cheers!
Josue
Woohoo, it looks perfect. Thanks Josue, learned another very valuable tip!
You are welcome Annemarie, glad to help :)
Regards,
Josue