Archived topic
How to Remove the Underlaying of Links in Breadcrumbs and Review Number?
7 replies · Started by Georgi on March 1, 2022
Hello GP Team,
I’m wondering how can the underlying be removed from links in the breadcrumbs and from the star rating number under a product but the underlying to stay for other links on a webpage? https://prnt.sc/4OSuKW3_kVuZ
This will be very useful if it can be achieved.
Thanks in advance!
Hi Georgi,
This is beyond the theme's support as the theme doesn't add these parts. :)
You may have to ask the support of the plugin that adds the breadcrumb and star rating if their element structure can be filtered with PHP snippets. :D
I see. Thanks!
You can ask them specifically if they have a filter for the html output so you can remove the anchor tag. :)
No problem.
Useful. Thanks for the advice!
Here's how to add PHP incase you need it -
https://docs.generatepress.com/article/adding-php/
They provided me CSS to resolve it.
Sharing it here in case someone uses RankMath breadcrumbs and wants to remove the underlaying of the breadcrumbs:
.rank-math-breadcrumb p a {
text-decoration: none!important;
}
Thanks for sharing. Glad you got it sorted. :D