Viewing 3 replies - 1 through 3 (of 3 total)
  • Re: your theme feature page: “Typebased is built on our very popular backend, which includes some non-standard, non-average customisation options;”

    A manuever around their customization without touching any other files may be this (remember to backup your header.php before proceeding 🙂 in your header.php change the div menu section to

    <div id="menu">
    <ul class="wrap">
    <li class=class="page_item current_page_item first"><a href="<?php bloginfo('url'); ?>"><span>Home</span></a></li>
    <?php woo_show_pagemenu( get_option('woo_menupages') ); ?>
    </ul>
    </div>

    Hi

    The problem is this line in your CSS

    style.css (line 113)
    #header h1 img {
      padding-bottom:50px;
    }

    Change it to 0px.

    Because of that 50px of padding, when you think you are clicking the About tab you are actually clicking the image in the header, which is linking to the home page. That is why the About tab is not bringing up the About page

    If you need more padding between the header and the menu, add a top margin to the <div id=”menu”>

    Thread Starter cnirvana

    (@cnirvana)

    That’s brilliant! I ended up changing the css since that was simplier:)! Thank you both for your input!!!!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Tab not linked on PAGES (just reloads homepage)’ is closed to new replies.