Hi I would like to remove the place where you see on the page name and the breadcrumb on all pages.
Any code that would help?
eh, have i asked things in the wrong way:)? none of my Q’s have answers and all other did. If I need to change the way I ask please let me know
See if this will work for you. pUt in custom css
.title_container
.breadcrumb {
display: none;
}
Hi,
@elames: Thanks for the tip.
@bevlogenverf: I don’t see the breadcrumbs or page title on every page. I assume you already fixed it. If you didn’t, just add this on your custom.css or Quick CSS
.title_container {
display: none;
}
And I can see that you’re having a style issue on your menus, I think this will fix it:
.main_menu ul:first-child > li > a {
font-size: 13px;
font-weight: 500;
}
You can adjust the font size to 12.
Regards,
Ismael
thank you ismael. yes the breadcrumb worked.
how could i change the size of the top menu with the sharing buttons? that would greatly help. can i also cahnge the color of those menu buttons?
Hi,
You can use this:
.header_color .sub_menu>ul>li>a {
font-size: 14px;
color: red;
}
You can also change the phone number size and color with this:
.phone-info.with_nav {
font-size: 14px;
color: red;
}
Regards,
Ismael
SUPER