• wwwemploytheunemployedcom

    (@wwwemploytheunemployedcom)


    I am trying to fix tabs on my site: https://MarketingPromotionMix.com
    Theme = intrepidity 1.5.1

    The home tab and the tab next to it are one and the same page. I need to delete the “home tab” and also be able to edit the names of the remaining tabs. The tab names are taken directly from the headlines which are far too long for a tab.

    I can see the changes I need to make in the page HTML code, but I cannot find it in php or css. I’m not a coder.

    Any suggestions?

    Robin

Viewing 4 replies - 1 through 4 (of 4 total)
  • I’m not familiar with intrepidity theme, so I’m not sure what page it will be on.
    Look for this group of tags on your pages:

    <!-- #Container-->
    
            <div id="globalnav">
            	<div id="navpocket">
                  <ul id="nav">
    
                                    <li><a href="https://marketingpromotionmix.com" rel="nofollow">Home</a></li>
    
    				<li class="page_item page-item-193 current_page_item"><a href="https://marketingpromotionmix.com/" title="Integrated Marketing and Social Media Management">Integrated Marketing and Social Media Management</a></li>
    <li class="page_item page-item-81"><a href="https://marketingpromotionmix.com/make-your-website-an-asset/" title="Make Your Website an Asset.">Make Your Website an Asset.</a></li>
    <li class="page_item page-item-84"><a href="https://marketingpromotionmix.com/do-i-have-to-do-social-media/" title="Do I Have to Do Social Media?">Do I Have to Do Social Media?</a></li>
    <li class="page_item page-item-146"><a href="https://marketingpromotionmix.com/building-success/" title="Building Success">Building Success</a></li>
    <li class="page_item page-item-12"><a href="https://marketingpromotionmix.com/about-us/" title="About Us">About Us</a></li>
    <li class="page_item page-item-120"><a href="https://marketingpromotionmix.com/marketing-mix-blog/" title="Marketing Mix Blog">Marketing Mix Blog</a></li>
    <li class="page_item page-item-13"><a href="https://marketingpromotionmix.com/contact-us/" title="Contact Us">Contact Us</a></li>
    
                                  </ul>

    and delete this line:

    <li><a href="https://marketingpromotionmix.com" rel="nofollow">Home</a></li>

    Everything is already formatted in the CSS, so nothing should change except for the HOME link to disappear.

    Hope that works out.

    Oh, and you can change the names of the links and the links themselves by changing the tags I mentioned above.

    Thread Starter wwwemploytheunemployedcom

    (@wwwemploytheunemployedcom)

    Here’s the php code I found, but it doesn’t have exactly what you suggested I find. What exactly do I do?
    Thank you for your help!

    <div id=”globalnav”>
    <div id=”navpocket”>
    <ul id=”nav”<?php echo (get_option(‘tbf1_search_header’) == “no”) ? ‘ class=”nav-wide”‘ : ”;?>>

    <?php if(get_option(‘tbf1_nav_hide_home’) != ‘yes’) : ?>

      <?php wp_list_categories(‘title_li=&depth=4&orderby=name’); ?>

    */?>

    <?php //Search box
    if(get_option(‘tbf1_search_header’) == “yes” || (isset($_GET[‘preview’]) && isset($_GET[‘template’]))) : ?>
    <?php include(TEMPLATEPATH.’/searchform.php’); ?>
    <?php endif; ?>
    </div>

    Thread Starter wwwemploytheunemployedcom

    (@wwwemploytheunemployedcom)

    Thank you for your help, I finally fixed the problem by excluding the page ID number. Thanks again for your time and help!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove duplicate “home” tab and edit tab names’ is closed to new replies.