For some reason, not all of my links are white. I know, I used css to change them, but its not working for some links. If I do not include http://, its not white also. Like if I put <a href="pagename.html">Page Name</a>, its just the default color. Also, a link to a website called MapleFBI is the default color on my website. Here take a look at my css and html for that part:
Can someone tell me what Im doing wrong?
Code:
a:link {
color:white;
text-decoration:none;
}
a:visted {
color:white;
text-decoration:none;
}
a:active {
color:white;
text-decoration:none;
}
a:hover {
color:brown;
text-decoration:none;
}
.affiliate {
background:grey;
padding:10px;
margin:20px;
position:absolute;
top:600px;
width:200px;
height:200px;
}
Code:
<div class="affiliate">
<img src="http://forums.x10hosting.com/images/affiliates.png">
<li><a href="http://vhost4all.com/">vhost4all</a>
<li><a href="http://maplefbi.com">MapleFBI</a>
</div>
Can someone tell me what Im doing wrong?
Last edited: