Reputation: 758
Website is: http://www.talons-guild.com/forums/
Please try to click the link on the left side that says "Home"--it does not work for me. Any idea why?
Upvotes: 1
Views: 123
Reputation: 137
The Header Div Container witch include bird size over the text and it z-index over it too so change size or z-index for item menu
<a style='z-index:10;' href="http://www.talons-guild.com/index.php">Home</a><br />
regard's
Upvotes: 0
Reputation: 19709
You can fix it by removing the z-index
property from div#header
on your CSS.
Upvotes: 3
Reputation: 207901
Because your div with ID of header is on top of it with a higher z-index, which essentially blocks it. Give your paragraph with class menu a higher z-index (and a position) and it will work.
Upvotes: 0