Sash
Sash

Reputation: 23

HTML Links not working within <ul> tag

I am working off a template to play around with codes and am having difficulty in getting the "Template Store" link to work.

Please can you help me solve this problem as nothing currently happens when clicked.

Update:

Here is a link to my website - http://www.graphixinc.co.za/test/index.html. I'm using target = _blank here, but it isn't working.

Here is the code:

<div class="navigation">
        <img src="images/navigate.png" alt="navigate_img"/>
        <ul>  
            <li>  
                <a href="#take-me-home" class="nav-active rounded"><span>Take Me Home</span></a>  
            </li> 
            <li>  
                <a href="http://www.mywebsite.co.za/store" class="roundedss" target="blank"><span>Template Store</span></a>  
            </li> 
            <li>  
                <a href="#about" class="rounded"><span>About</span></a>  
            </li>  
            <li>  
                <a href="#services" class="rounded"><span>Services</span></a>    
            </li>  
            <li>  
                <a href="#showcase" class="rounded"><span>Portfolio</span></a>    
            </li>
            <li>  
                <a href="#our-team" class="rounded"><span>On Promo</span></a>    
            </li>   
            <li>  
                <a href="#news" class="rounded"><span>News</span></a>  
            </li> 
            <li>  
                <a href="#contact-us" class="rounded"><span>Contact Us</span></a>  
            </li>  

        </ul>  
    </div>       

Your help is much appreciated.

Upvotes: 0

Views: 1401

Answers (2)

Hmxa Mughal
Hmxa Mughal

Reputation: 394

target should be "_blank" and i tested it...

<a href="http://www.mywebsite.co.za/store" class="roundedss" target="_blank"><span>Template Store</span></a>

here is the fiddle for it, it works fine...

Upvotes: 0

dsgriffin
dsgriffin

Reputation: 68626

That's because target="blank" should be target="_blank"

<a href="http://www.mywebsite.co.za/store" class="roundedss" target="_blank"><span>Template Store</span></a>

Upvotes: 1

Related Questions