Archived topic
The footer of single post is bigger than the others
3 replies · Started by Tan on June 18, 2021
Viewing posts 1–4 of 4
Hi there,
I create a footer in elements and It works perfectly. But the footer of single post is bigger than the others.
How could I fix that?
These are homepage and single post.
Thank you so much.
Hi there,
you have this CSS on your site:
@media (min-width: 769px) {
.single-post p {
font-size: 18px !important;
line-height: 1.5em;
margin-bottom: 30px;
}
}
If you change it to the following it will only apply to the posts content:
@media (min-width: 769px) {
.single-post .entry-content p {
font-size: 18px !important;
line-height: 1.5em;
margin-bottom: 30px;
}
}
I got it. Thank you so much David! ^^
Glad to be of help
This archived topic is closed to new replies.