Hexel C
Hexel C

Reputation: 115

Why do my links not work in Firefox

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

Answers (5)

Jaspero
Jaspero

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

daniels
daniels

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

Beno
Beno

Reputation: 4753

take out the

table, tr, td {
    position: relative;
}

this is causing some overlap in your layout

Upvotes: 5

Jeremy Haile
Jeremy Haile

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

Related Questions