Archived topic
Margin after title
2 replies · Started by Sandro on December 9, 2022
I want a small margin after the title (h3). For that I added this CSS:
/* --- Stile per Niente margine sotto --- */
.no-padding-sotto {
padding-bottom: 5px;
margin-bottom: 0px;
}
It worked for years, until yesterday.
Now this method still works when used after paragraphs, but no longer after h3 headings. Worse, the margin even increases a little, using this method now.
I recently did the theme update. I don't know if that caused the problem.
You can see the problem in this post: https://squarci.info/dissesto-idrogeologico/
Hi there,
try changing your CSS to:
.no-padding-sotto {
padding-bottom: 5px;
margin-bottom: 0px !important;
}
It works!
:-)