I’m just using the standard turn ‘bread crumb on’ in X options not the widget. I can customize everything I want but I can get the home icon to be replaced.
Any ideas?
I’m just using the standard turn ‘bread crumb on’ in X options not the widget. I can customize everything I want but I can get the home icon to be replaced.
Any ideas?
Hello @mhkatz,
Thanks for writing in! Regretfully we do not have an option in the theme that you can replace the Home icon in the breadcrumb. Perhaps this ild thread can help you:
Best Regards.
Do you know where that icon file resides? I can just replace it there?
I can hide it so I figure I can just replace the file somewhere.
.x-icon-home {
display: none;
}
Secondly can you help me hide the second arrow on the breadcrumb bar?
The second arrow I can’t target directly I can only not display all the arrows.
Hello @mhkatz,
The icon is using the Font Awesome icons. You can replace the home icon with other font awesome icons instead. You can check all the icons here:
We do not provide theme customization as part of our theme support though so if you haven’t done so yet, you need to learn CSS and also learn how to use a browser’s element inspector to get the appropriate selector for the CSS.
We’ll provide an override code for now to hide the home icon and the first arrow but again, we can’t continue providing custom codes and we will not support issues arising from the use of it nor further optimize it.
Add the following code in Theme Options > CSS .
.x-breadcrumbs > span:first-of-type {
display: none;
}
You will be the one who will maintain this code to make sure that it will still work after every WP core, theme or plugin updates in your site.
Hope that helps and thank you for understanding.
That worked great thank you very much.
You are most welcome.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.