Skip to content

Commit

Permalink
fixed thumbnav height issues
Browse files Browse the repository at this point in the history
  • Loading branch information
FinalAngel committed Aug 17, 2010
1 parent a42711e commit 6785e49
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion simplegallery/media/css/simplegallery.css
Expand Up @@ -38,7 +38,7 @@

/* thumbnail navigation */
.thmb-nav { display:none; }
.thmb-nav a { display:block; position:absolute; top:24%; z-index:26; color:#fff; text-decoration:none;
.thmb-nav a { display:block; position:absolute; top:32%; z-index:26; color:#fff; text-decoration:none;
padding:0 5px; background:#000; }
.thmb-nav a:hover { color:#000; background:#fff; }
.thmb-nav .thmb-prev { left:0; }
Expand Down
2 changes: 1 addition & 1 deletion simplegallery/media/js/jquery.simplegallery.js
Expand Up @@ -157,7 +157,7 @@ $.fn.simpleGallery = function (options) {
});
thumb.parent().addClass('thmb_cycle').css({
width: fullviewWidth,
height: thumb.find('li').outerHeight(true)
height: thumb.find('li a').outerHeight(true)
});
}
}
Expand Down

0 comments on commit 6785e49

Please sign in to comment.