Reputation: 1
I have the weirdest reaction on my page. My hyperlinks act as plain text. Not as a link. I just can't click on the links. Here is the thing, if I hide some of of the divs in the page the links are now working.
Here is what I get from reading the source of my page.
HTML
<div id="prodMenu">
<div id="Menu"><a href="product.php">All</a></div>
<div id="Menu"><a href="product.php?cat=Snake Whips">Snake Whips</a></div>
<div id="Menu"><a href="product.php?cat=Floggers">Floggers</a></div>
<div id="Menu"><a href="product.php?cat=Hand Floggers">Hand Floggers</a></div>
</div>
Here is the css related to my menu section
CSS
#prodMenu{
position:absolute;
width: 1000px;
left: 50%;
top:0px;
margin-left: -500px;
}
#prodMenu > #Menu{
display:block;
float:left;
margin: 5px;
padding: 0 5px;
font:10px;
}
#prodMenu > #Menu a{
text-decoration:none;
color:#838F97;
}
#prodMenu > #Menu a:hover{
text-decoration:none;
color:#C0E73D;
}
Any ideas how to fix this?
Upvotes: 0
Views: 46