Reputation: 115
The links on the right side are supposed to be for categories.
The first three links work but why do all the links after that not work?
When you click on them nothing happens.
The mouse doesn't change to a finger when you move your mouse over it.
http://pinoydirectory.com/2011/directory/index.php
I removed the styling, simplified the URLs for debugging, but the links still do not work. Why?
The links work in Internet Explorer 8 but they don't work in Firefox 4.0.1
Upvotes: 0
Views: 1499
Reputation: 2972
Remove
table, tr, td {
position: relative;
}
from site_styles.css
The tr
on your left that wraps the pagination and other text is flowing over to the left and covering the links.
Upvotes: 0
Reputation: 19203
It has something to do with your table form the left and the css you have for it's tds. If you remove the:
td {
position: relative;
}
from site_styles.css (line 29)
the links will work ok.
Upvotes: 0
Reputation: 4753
take out the
table, tr, td {
position: relative;
}
this is causing some overlap in your layout
Upvotes: 5
Reputation: 136
All of your links have href="index.php". You should change index.php to be where you want those links to go. In my testing, the cursor does change to a pointer.
Upvotes: -1
Reputation: 2016
Make sure that you fix the errors here: http://validator.w3.org/check?uri=http%3A%2F%2Fpinoydirectory.com%2F2011%2Fdirectory%2Findex.php&charset=%28detect+automatically%29&doctype=Inline&group=0
Upvotes: 2