Newbie needing help here. I am looking to remove the white Home button from the Nova theme. It is not the main "Home" in the navigation bar but the one that shows up on every page but Home. This button also shows what page you are on. While the button is there it says what page you are on 3 times. Would like to remove from all pages. To have the page title 2 times is enough. Wish I could attach a pic of my screen for reference. Any help would be appreciated.
Post your url so we can see
why do you want take it as is needed for browsing from other pages back to home.
There is a Home button just above it in the navigation bar. The white button is not needed. It is repetitive.
That must your breadcrumb as when you click on a page you see it created check if you have way disable in theme options if you have one.
Did not see a reference to breadcrumbs in Theme options. Can get to breadcrumbs.php in editor but do not know what to omit.
In style.css look for this code around line 148
#breadcrumbs-left, #breadcrumbs-content, #breadcrumbs-right {
float: left;
height: 35px;
}
Add
display: none;
govpatel, You are definitely in the right zip code. Adding display:none; to that line snipped the corner off of the white button. I moved display:none; around to a few other lines and it did some other things to the button but didn't remove it. So we're close. Thanks for your help on this. Can you just remove all the lines about breadcrumbs in the style.css without messing things up?
How about making a change to breadcrumbs.php in Templates?
You can was just finding easier way and when added display: none; all breadcrumb had gone recheck if added it right place.
This what you should have in line 148
#breadcrumbs-left, #breadcrumbs-content, #breadcrumbs-right {
display: none;
float: left;
height: 35px;
}
BINGO! You got it govpatel! I was putting it in the wrong place. The site looks much better now. Thanks for all your help.