Hey everyone,
I have blog posts in the advanced builder that I put on my blog post page and then in a 1/3 Column in the footer that I made.
I’d like to add bottom padding to the blog posts just on the page not in the 1/3 column in the footer. However, whenever I add a custom css class and then add my padding it doesn’t work.
Here is what I have. This adds padding to both.
.content .entry-content-wrapper .entry-content-wrapper {
padding-bottom: 40px;
}
The custom class is “.blog-content” but when I use the below it doesn’t give it any padding.
.blog-content .content .entry-content-wrapper .entry-content-wrapper {
padding-bottom: 40px;
}
How can I add padding to the blog post page but not to the blog entries in the footer if the custom css class isn’t working (or im doing it wrong)
Thanks