Results 1 to 3 of 3

Thread: Step carousel nav button issue (nav button doesn`t fade out)

  1. #1
    Join Date
    Aug 2012
    Posts
    9
    Thanks
    4
    Thanked 0 Times in 0 Posts

    Default Step carousel nav button issue (nav button doesn`t fade out)

    1) Script Title: Step Carousel Viewer v1.9

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...epcarousel.htm

    3) Describe problem: Whenever I click on an image within the carousel and open it in a lightbox, the carousel navbutton stays in the foreground (instead of fading, like the rest of the page).

    link

    Any ideas|

    Thanks.
    Last edited by mesua; 08-22-2012 at 08:30 PM.

  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

    Using a text only editor like NotePad, in your http://www.raludra.ro/nyroModal/styles/nyroModal.css file, add the two highlighted z-index values as shown (scroll the code block to see the second one):

    Code:
    .nyroModalBg {
    	position: fixed;
    	overflow: hidden;
    	top: 0;
    	left: 0;
    	height: 100%;
    	width: 100%;
    	background: #000;
    	opacity: 0.7;
    	z-index: 100;
    }
    .nmReposition {
    	position: absolute;
    }
    .nyroModalCloseButton {
    	top: -13px;
    	right: -13px;
    	width: 12px;
    	height: 12px;
    	text-indent: -9999em;
    	background: url(../img/close.gif);
    }
    .nyroModalTitle {
    	top: -26px;
    	left: 0;
    	margin: 0;
        font-size: 1.1em;
    	color: #ddd;
    }
    .nyroModalCont {
    	position: absolute;
    	border: 4px solid #777;
    	margin: 25px;
    	background: #fff;
    	z-index: 101;
    }
    The browser cache may need to be cleared and/or the page refreshed to see changes.
    - 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:

    mesua (08-22-2012)

  4. #3
    Join Date
    Aug 2012
    Posts
    9
    Thanks
    4
    Thanked 0 Times in 0 Posts

    Default

    it worked. Thanks a lot!

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
  •