Archived topic
Reduce Breadcrumbs Text Size
3 replies · Started by John on April 23, 2021
Hi GP,
I use the following hook element to add breadcrumbs via Yoast:
<?php if ( function_exists('yoast_breadcrumb') && !is_front_page() ) : ?>
<?php yoast_breadcrumb('<p id="breadcrumbs">','</p>'); ?><?php endif; ?>
While the breadcrumbs show up, the text is rather big. How do I need to add to the element in order to reduce the font size?
Hi there,
Try some CSS like this:
p#breadcrumbs {
font-size: 15px;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know if this helps :)
Perfect. That worked! Thank you very much :)
No problem :)