Forums

[resolved] Remove home button from pages of Nova theme (13 posts)

  1. ATO21
    Member
    Posted 4 months ago #

    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.

  2. govpatel
    Member
    Posted 4 months ago #

    Post your url so we can see

  3. ATO21
    Member
    Posted 4 months ago #

  4. govpatel
    Member
    Posted 4 months ago #

    why do you want take it as is needed for browsing from other pages back to home.

  5. ATO21
    Member
    Posted 4 months ago #

    There is a Home button just above it in the navigation bar. The white button is not needed. It is repetitive.

  6. govpatel
    Member
    Posted 4 months ago #

    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.

  7. ATO21
    Member
    Posted 4 months ago #

    Did not see a reference to breadcrumbs in Theme options. Can get to breadcrumbs.php in editor but do not know what to omit.

  8. govpatel
    Member
    Posted 4 months ago #

    In style.css look for this code around line 148
    #breadcrumbs-left, #breadcrumbs-content, #breadcrumbs-right {
    float: left;
    height: 35px;
    }

    Add
    display: none;

  9. ATO21
    Member
    Posted 4 months ago #

    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?

  10. ATO21
    Member
    Posted 4 months ago #

    How about making a change to breadcrumbs.php in Templates?

  11. govpatel
    Member
    Posted 4 months ago #

    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;
    }

  12. ATO21
    Member
    Posted 4 months ago #

    BINGO! You got it govpatel! I was putting it in the wrong place. The site looks much better now. Thanks for all your help.

  13. govpatel
    Member
    Posted 4 months ago #

    You are welcome.

Reply

You must log in to post.

About this Topic