Results 1 to 2 of 2

Thread: CSS Image Gallery help

  1. #1
    Join Date
    Mar 2011
    Posts
    5
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Exclamation CSS Image Gallery help

    I have created a website that works great in Firefox, IE8, Safaribut is a nightmarein IE7
    See my problem with the photos at
    http://www.jpollman-marketing.com/po...ite/manor.html

    Any suggestions would be most appreciated

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

    Default

    It looks strange in firefox too, but that because the large images are absolutely positioned. To center them you could try this css
    Code:
    .thumbnail:hover span {
        left: 50%;
        margin-left: -450px;
        top: 165px;
        visibility: visible;
        z-index:50;
    }
    This will place the image in the middle horizontally, but you will need to remove the padding from the 'thumbnail span' and 'thumbnail span img' to get it to fit. Otherwise you would have to increase the width of the containerBlank.

  3. The Following User Says Thank You to azoomer For This Useful Post:

    jennp (04-13-2011)

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
  •