Log in

View Full Version : inactive links in FF 2



rebelbwb
05-06-2009, 01:30 PM
I am experiencing links that are supposed to be active and yet in FF2 they are inactive. Not sure about FF3. I am primarily referring to the links underneath each bag image on the front page

http://v2.bags-4-less.com/

Any ideas on what is amiss?

They are active in IE 6 & 7

Thanks in advance

Kevin824
05-14-2009, 11:58 AM
You may want to try the full url in your links.
Example: http://v2.bags-4-less.com/eco-friendly-cooler-bags.php
Actually, all you may have to do is just add the / to eco-friendly-cooler-bags.php so that it looks like this: /eco-friendly-cooler-bags.php

rebelbwb
05-19-2009, 05:39 PM
this is the URL I'm dealing with

v2.bags-4-less.com

text links where bag images are do not work in ff 2 & 3 but do work in ie 6 & 7

can anyone assist in knowing how to fix this issue?

thanks

bluewalrus
05-19-2009, 10:40 PM
did the soultions in your first post not work?
http://www.dynamicdrive.com/forums/showthread.php?t=44721

rebelbwb
05-20-2009, 12:13 AM
no they did not unfortunately.

Medyman
05-20-2009, 01:21 AM
First, you should download and learn how to use Firebug. It's a debugging tool for Firefox and if you had used it, it would have probably saved you a ton of trouble.

If you look at your site in Firebug, you'll see that your everything on your page is overlapping each other (i.e. you have multiple layers). Why is this? I think it's because of your reset stylesheet.

I haven't tested this, but I think it will work. Open up your main.css and find:


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, font, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
position:relative;
}


Remove the highlighted. There is no reason to set every element to have relative positioning. That's counterproductive and doesn't do what you probably think it does.