Results 1 to 3 of 3

Thread: pop-up image viewer

  1. #1
    Join Date
    Sep 2008
    Posts
    2
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default pop-up image viewer

    1) Script Title: pop-up image viewer

    2) Script URL (on DD): http://www.dynamicdrive.com/style/cs...-image-viewer/

    3) Describe problem: Okie so...I m all new in css and coding and i was making a website, now what happens is that I used this image viewer on my gallery www.....gr/html/gallery.html and on firefox everything looks normal (or at least how i want them to look) but on IE if you take a look the Large image is on the same height with the Thumb and thats a problem.. Can someone tell me what's rong and how can I fix it so it;s not on the same height?
    Last edited by sfo; 09-22-2008 at 07:19 AM.

  2. #2
    Join Date
    Oct 2006
    Location
    New York, NY, USA
    Posts
    262
    Thanks
    42
    Thanked 24 Times in 24 Posts

    Default change settings

    For HOVER/SPAN CSS basics see http://meyerweb.com/eric/css/edge/popups/demo.html. Then you might be more confident about changing your settings for left:-1000px and/or left:60px. Once you take the CSS out of the box, you are not stuck with the settings.

    This is your current CSS (as they were "boxed"):
    Code:
     
    .thumbnail{ position: relative; z-index: 0;  }
    .thumbnail:hover{ background-color: #FFFFFF; z-index: 50; }
    .thumbnail span{ position: absolute;  padding: 0px;  left: -1000px; border: 0px; visibility: hidden; }
    .thumbnail span img{ border-width: 0; padding: 0px; }
    .thumbnail:hover span{ visibility: visible;  top: 0;  left: 60px;  }
    The thumbnail is position:RELATIVE so you can set the HOVER/SPAN position:POSITIVE in relation to the thumbnail. Looking at your page, I’d be inclined to set a right margin (instead of left). I used a variation of this at http://artdemo.tripod.com/illustrati...exCSS.html#top and http://chanit.com/gallery/index.htm wherein there were different margin settings for the left and right columns, unfortunately I accidentally deleted my better/original CSS file for this.
    Last edited by auntnini; 09-21-2008 at 12:29 AM.

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

    sfo (09-22-2008)

  4. #3
    Join Date
    Sep 2008
    Posts
    2
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    Hi and firstly thanks for your reply...secondly....:P will it be rong to tell you WHAT? lol...im sorry...i feel like a lil idiot but i dont really understand...and i dont understand how this will help?

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
  •