• On each page of my site, I see the Menu Title word repeated at the top. I want to eliminate this repetitious word–it looks terrible.

    Example: If you click on “Home” on the navigation bar, you get taken to a page at which you will see “Home” at the top, in un-bolded letters. Ditto for the rest of the pages.

    Can anyone please explain in layman’s terms what to do, step by step, as I know nothing of coding.
    This is the site: http://www.admissionsessaycoach.com

    MANY THANKS!

Viewing 5 replies - 1 through 5 (of 5 total)
  • You can try this if you like – open /wp-content/themes/zeebusiness/page.php

    find this on line 9

    <h2 class="page-title"><?php the_title(); ?></h2>

    comment it out..

    <!--<h2 class="page-title"><?php the_title(); ?></h2>-->

    ..but you’re removing your h2’s for all your page titles that way.

    Thread Starter Indigo Paris

    (@indigo-paris)

    Thanks so much. I copied and pasted this:
    <!–<h2 class=”page-title”><?php the_title(); ?></h2>–>

    in place of this:
    <h2 class=”page-title”><?php the_title(); ?></h2>

    Unfortunately, it didn’t make any difference. Do I have to do something else afterwards to make the change “stick?” Also, is it important that the new line of code which I inserted in place of the old one be in EXACTLY the same place, in terms of how far it is indented?

    Thanks so much for responding anyway.
    http://www.admissionsessaycoach.com

    I’m pretty surprised that didn’t work. It worked great on my copy. Try this instead. Go to Dashboard > Appearance > Theme Options > zeeBusiness Theme Options > General Tab > Custom CSS box, and paste this in the box:

    .page-title {display:none;}

    Save the changes and see what happens. That also works on my copy, by the way.

    If it still doesn’t wok for you, I would start by going to wherever the size of the font for title H2 tag has been altered and see what that looks like.

    Thread Starter Indigo Paris

    (@indigo-paris)

    I tried this, and it did not eliminate the repetition of the menu word at the top of page. Nuts. I even tried pasting in the code in the CSS box, saving it, logging out of my site, then reopening it, and still not go.

    I am at a loss.

    I do appreciate your help, though. Thank you for trying.

    You can hide the top navigation with this CSS code.
    #topnavi { display:none; }

    Go to Dashboard > Appearance > Theme Options > zeeBusiness Theme Options > General Tab > Custom CSS textarea to post it.

    I will fix that issue with the next theme update.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘ZeeBusiness Theme: Redundant Menu Title words at top of each page’ is closed to new replies.