Archived topic
Custom breadcrumbs colour and font size
5 replies · Started by Benigno on December 10, 2020
Hi there,
I'm using GP Premium and Yoast SEO (hook) and need to know how I can change the colour and font size of the breadcrumbs so they can be in tune with the web design.
Thanks in advance.
Hi there,
can yo share a link to your site so i can take a look?
Hi David,
You can find the link below.
Thanks,
Try this CSS:
/* Link Color */
#breadcrumbs a {
color: #f00;
font-size: 15px;
}
/* current static color */
#breadcrumbs span {
color: #00f;
}
/* Font size */
#breadcrumbs a,
#breadcrumbs span {
font-size: 15px;
}
I have split the CSS so you can set links differently to the current post item
It works beautifully. Thanks so much David!
You're welcome