Log in

View Full Version : Images jump when clicked (Firefox Bug)



ScottForbes
08-22-2010, 07:07 PM
Hello,

I'm finishing up a website design and just at the last minute browser check, noticed that the gallery and subgallery pages behaved strangely when in FireFox.

When I go to click an image on either a gallery page or the Gallery page itself, it bumps up or down (depending on the page).

I've tried seeing what is up with the code, but everything looks fine, sorry if this is not the right place, but I thought it'd be a good place to go.

Here is the website, if anyone can help, it'd be greatly appreciated.

http://alinaurusov.com/gallery.html

Scott

coothead
08-22-2010, 07:42 PM
Hi there ScottForbes.

and a warm welcome to these forums. ;)

In my tests I found that adding this to your style sheet...


a img {
float:left;
}

...cured the bouncing effect. ;)

Of course, this a general setting and may adversely effect other parts of your site.

If this is the case then you will have to make the code more specific. :)

coothead

azoomer
08-22-2010, 07:47 PM
I think at least part of the problem comes from this part of the css


.commission-sub a:link, a:visited, a:active {
color:#FFF;
text-decoration:none;
border-bottom:0px dotted #666;
padding-bottom:5px;
}

You could see what happens if you change it to something like this

.commission-sub a:link, a:visited, a:active {
color:#FFF;
text-decoration:none;
border-bottom:0;
padding-bottom:0;
}


Sorry ! cross posting.