jShowOff Slide Show Can't Click in Center of Slide

33 views Asked by At

See the "Re-styled Thumbnail Demo" (bottom right) on the home page for this, http://ekallevig.com/jshowoff/

Put your cursor at the top middle of the slide and you can can click. Put your cursor at the middle and there is no click available.

I believe the prev/next arrows are to blame. Both are enclosed in the same < p > tag. I tried adding a z-index without success.

This is a problem because our linked slides are not large, and there is not much clickable area above and below the prev and next arrows. Besides, most people would click in the middle of the slide.

Can you tell me how to fix that?

Thank you!

1

There are 1 answers

3
AudioBubble On

Root cause

CSS line 448 - 449

.thumbFeatures p.jshowoff-controls {
    background: none;
    height: 0px; /* I am the cause */
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 100px;
    width: 100%;
    z-index: 150;
    }

Hope this helps.