Results 1 to 3 of 3

Thread: Trouble displaying CSS Popup Image

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

    Default Trouble displaying CSS Popup Image

    1) Script Title: CSS Popup Image Viewer

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

    3) Describe problem:
    I absolutely love this one! I have installed the code on my test site (on my desktop) and everything worked great - I want to use it all over the place. Unfortunately, when I moved the code to the webserver, it is not working properly - the image is chopped off behind a cell in the table... must be some difference in coldfusion or os?

    Here's a link to the page:
    http://www.ontherocks.biz/index.cfm?...lay&page_id=27
    Any ideas?

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    In the kalendar.css file find this section (around line #18) and make the highlighted change:

    Code:
    .eventDay {
    	font-family: verdana, arial, helvetica, sans-serif;
    	font-size: 10px;
    	font-weight: bold;
    	background-color: #ffffff;
    	height: 80px;
    	width: 14%;
    	padding:5px;
    	vertical-align: top;
    	overflow: visible;
    
    }
    Also, for some browsers add a 100 z-index here (same file around line #355):

    Code:
    .thumbnail span{ /*CSS for enlarged image*/
    position: absolute;
    background-color: lightyellow;
    padding: 5px;
    left: -1000px;
    border: 1px dashed gray;
    visibility: hidden;
    color: black;
    text-decoration: none;
    z-index: 100;
    }
    Last edited by jscheuer1; 09-01-2011 at 05:21 PM. Reason: add - Also, for some browsers . . .
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

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

    Donnabdr (09-03-2011)

  4. #3
    Join Date
    Aug 2011
    Posts
    2
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    Hooray! You are my hero. I am off to play with Image pop-ups.

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
  •