skip to Main Content

OK downloaded, a free one page html5 template that uses Twitter Bootstrap – works fine, until I want to change a link in the top menu to go to another page. It doesn’t work !

A little research suggests a z index issue – but I can’t figure it out.

The menu is thus

<nav class="pull-left">
    <ul class="list-unstyled">
        <li class="animated wow fadeInLeft" data-wow-delay="0s"><a href="#about" title="More details about our golf club">About Us</a></li>
        <li class="animated wow fadeInLeft" data-wow-delay=".1s"><a href="http://merseytribe.co.uk/membership-register.html" title="Sign up today for one free month trial at our gold club">Join</a></li>
        <li class="animated wow fadeInLeft" data-wow-delay=".2s"><a href="#app_features" title="Already a member? Sign in here">Members</a></li>
    </ul>
</nav>

And the site URL is http://merseytribe.co.uk/

Tried all sorts of things and it’s driving me crazy !

Thanks, David

2

Answers


  1.  <a href="javascript:void(0);" onclick="window.location='http://merseytribe.co.uk/membership-register.html'" title="Sign up today for one free month trial at our gold club">Join</a>
    

    Try this. it will work. because it is one page theme so all link is working with js. but it is absolute link.

    Login or Signup to reply.
  2. Try adding targe=”_self” or target=”_blank” to the anchor tag as per your requirement.

    <a title="Sign up today for one free month trial at our gold club" href="http://merseytribe.co.uk/membership-register.html" target="_self">Join</a>
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search