Hello, I would like to ask how to delete the top menu icon like in the images?

Thank you
Hello, I would like to ask how to delete the top menu icon like in the images?

Thank you
Hey Sutriano,
I’m sorry but I’m not exactly sure what the issue is. Do you want to remove the home icon? Regretfully, there is no option for this so you need to add this code in Theme Options > CSS.
.x-breadcrumbs .home {
display: none;
}
If that is not what you mean, please give us more details.
Thanks.
Thank you @christian_y. It’s not the Home Icon that I want to delete, but the words next to it. So for this screenshot it’s SERVICE. The Home icon is good.

Hey Sutriano,
Thanks for clarifying. Regretfully, there’s currently no option to remove the current item. For now, a simple way to achieve this is to hide it. Please add this code in Theme Options > CSS.
.x-breadcrumbs .current,
.x-breadcrumbs .delimiter:nth-last-child(2) {
display: none;
}
Hope that helps.
Thank you very much @christian_y
Really help me
You’re most welcome!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.