1
I have this code from a menu and when clicked on the item Bio the link does not work:
<ul id="ul-menu">
<li class="li-menu"><a class="scroll" href="http://www.iracemafilha.com">HOME</a></li>
<li class="li-menu"><a class="scroll" href="http://www.iracemafilha.com/biografia">BIOGRAFIA</a></li>
<li class="li-menu"><a class="scroll" href="#discografia">DISCOGRAFIA</a></li>
<li class="li-menu"><a class="scroll" href="#fotos">FOTOS</a></li>
<li class="li-menu"><a class="scroll" href="#videos">VIDEOS</a></li>
<li class="li-menu"><a class="scroll" href="#agenda">AGENDA</a></li>
<li class="li-menu"><a class="scroll" href="#convite">CONVITE</a></li>
<li class="li-menu"><a class="scroll" href="#contato">CONTATO</a></li>
</ul>
CSS code:
#ul-menu {
text-align: center;
padding-top: 25px;
word-spacing: 50px;
}
.li-menu {
display: inline;
font-family: 'Abel', sans-serif;
}
.li-menu a {
color: white;
text-decoration: none;
font-size: 15px;
background: #483D45;
-moz-transition: all 0.2s linear;
-webkit-transition: all 0.2s linear;
-o-transition: all 0.2s linear;
transition: all 0.2s linear;
}
I already put the link destination in "href" but when I click will not.
This site
http://www.iracemafilha.com
is blacklisted as unsafe site... you can give more details what site is this and which links do not work?– Sergio
Buddy, before I did the site I needed the hosting to create a fake study page for a "Safe Code Development" course at the College, but I’ve already removed all links and malicious files, I already sent a message to Google to remove the site from the list and make a new scam but not yet respond, I will have to register a new domain .com.br, but don’t worry that there is nothing malicious on the site, The problem is that Google has not yet removed the alert even removing all malicious files. Item iografia does not go to destination http://www.iracemafilha.com/biography
– Israel Sousa
I tested in fiddle and it worked he redirected to page in the same tab, put soloque a taget="_Blank" to better see the redirect, be sure there is an element with id equal to href="#".
– Ricardo
Ricardo, I am no longer using the navigation by anchors using Ids, I decided to make the individual pages anyway. I am referring to the first menu item "Biography", here it is not redirecting to the target.
– Israel Sousa
What’s in the case
/biografia
? should bebiografia.html
? or.php
? or maybe only one is missing/
to behttp://www.iracemafilha.com/biografia/
. I won’t test more on your site and I don’t see how to reproduce this error to help more.– Sergio