Archived topic
Changing Yoast Breadcrumbs font size
3 replies · Started by Ben on June 29, 2020
Hey guys,
Is there a way to change the size of the font of Yoast's breadcrumbs in GeneratePress?
I read another article where Tom suggested the following code:
#breadcrumbs {
font-size: 14px;
padding-bottom: 15px;
}
However, this hasn't worked for me :(
Thanks
Hi there,
how are you adding the breadcrumb to your site?
Via hooks
If you use this function to call the breadcrumbs it will add the wrapper with the #breadcrumbs ID
if ( function_exists('yoast_breadcrumb') ) {
yoast_breadcrumb( '<div class="grid-container grid-parent"><p id="breadcrumbs">','</p></div>' );
For reference:
https://docs.generatepress.com/article/adding-breadcrumbs/#using-functions