Results 1 to 3 of 3

Thread: Images jump when clicked (Firefox Bug)

  1. #1
    Join Date
    Aug 2010
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Images jump when clicked (Firefox Bug)

    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

  2. #2
    Join Date
    Nov 2006
    Location
    chertsey, a small town 25 miles south west of london, england.
    Posts
    1,920
    Thanks
    2
    Thanked 267 Times in 262 Posts

    Default

    Hi there ScottForbes.

    and a warm welcome to these forums.

    In my tests I found that adding this to your style sheet...
    Code:
    
    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

  3. #3
    Join Date
    Oct 2009
    Posts
    845
    Thanks
    14
    Thanked 189 Times in 188 Posts

    Default

    I think at least part of the problem comes from this part of the css
    Code:
    .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
    Code:
    .commission-sub a:link, a:visited, a:active {
    	color:#FFF;
    	text-decoration:none;
    	border-bottom:0;
    	padding-bottom:0;
    }
    Sorry ! cross posting.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •