Archived topic
Remove bottom margin from rankmath breadcrumb
3 replies · Started by Dmitrii on October 8, 2022
I need help with removing the current margin set for my breadcrumbs.
For context, I added this CSS to help with styling my posts:
.single-post .inside-article p {margin-bottom: 1.5em}
The code works well for everything else, but it's inadvertently applying to my breadcrumbs, so is there any CSS I can use to make it apply to everything but my breadcrumbs?
Attached screenshots.
Hi there,
add a style specifically for your breadrumbs:
.single-post .inside-article .rank-math-breadcrumb p {
margin-bottom: 0;
}
Worked perfectly, thank you!
You're welcome