Results 1 to 8 of 8

Thread: Simple Controls Gallery nav panel no function

  1. #1
    Join Date
    Mar 2009
    Posts
    11
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Simple Controls Gallery nav panel no function

    1) Script Title: Simple Controls Gallery

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex4/simplegallery_suppliment.htm

    3) Describe problem: My nav panel function don't work. All the images loaded but whem I move the mouse over the nav disapear and I can't navigate by the imagens. See my gallery problem in: www.imagetica.net/portfolio_iv.
    Soory by mu english. I'm a brazilian webdesigner begginer.
    Last edited by jscheuer1; 03-06-2009 at 03:32 PM. Reason: fix broken link

  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

    Your page uses way too much absolute positioning. Layer 5 is covering the bottom part of the gallery. You can't see that because that part of Layer 5 is transparent. Move Layer 7 to the end:

    Code:
            <!-- This is 'imagetica logo' -->
            <div id="Layer-4" >
              <img src="Layer-4.png" width="365" height="87" alt="imagetica logo" /></div>
    
          </div>
    
        </div>
    
      </div>
            <!-- This is 'animacao' -->
            <div id="Layer-7" >
    		
    <div id="simplegallery1"></div>
    
    		</div>
    
    </body>
    </html>
    In your stylesheet, adjust its top and left:

    Code:
    /* You named this layer animacao */
    #Layer-7 {
      position: absolute;
      left: 496px;
      top: 230px;
      width: 525px;
      height: 253px;
      z-index: 7;
    }
    - John
    ________________________

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

  3. #3
    Join Date
    Mar 2009
    Posts
    11
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    Thanks for your help, but isn't work. I think the problem is in mouse function when I move it over the gallery, but I canīt solve this. I stock in this problem for days...

    If I change the dimensions values in index.html of the page www.imagetica.net/portfolio_iv for 525 x 600 instead 525 x 253 (the correct images dimensions) the gallery works fine, but the gallery has a black image in the base.

  4. #4
    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

    - John
    ________________________

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

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

    gjrdesign (03-07-2009)

  6. #5
    Join Date
    Mar 2009
    Posts
    11
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    Man... THANK YOU SO MUCH FOR THIS!! I tried to resolve this for days, days! I know I'm a begginer in web and I study bymyself to do my site but this codes it's yet a little bit dificult to me... thanks again!

  7. #6
    Join Date
    Mar 2009
    Posts
    11
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    The gallery works fine in Firefox but isn't work in Internet Explorer. I do the solutions steps presented here but I can't make it work. Some idea an help?

  8. #7
    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

    Your page works here in IE 6 and 7. What version of IE are you using? It may just be that you need to clear your cache in IE to prevent the previous version of your page from being displayed.
    - John
    ________________________

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

  9. #8
    Join Date
    Mar 2009
    Posts
    11
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    I,m really stupid man. It's works fine in IE.

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
  •