Skip to content

Instantly share code, notes, and snippets.

@scottwyden
Created October 2, 2015 15:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scottwyden/73676bb8b07eb2fb7a70 to your computer and use it in GitHub Desktop.
Save scottwyden/73676bb8b07eb2fb7a70 to your computer and use it in GitHub Desktop.
Another 5 CSS Snippets to Customize NextGEN Gallery
/** Pro Grid Album Caption */
.nextgen_pro_grid_album > div > a.caption_link {
font-family: courrier;
}
/** Center NextGEN Widget images in Sidebar - the key is to set a specific width */
div.ngg-widget.entry-content {
width: 200px;
margin-left: auto;
margin-right: auto;
}
/** Hide triggers in Pro Lightbox carousel bar */
i.nggpl-toolbar-button-info.fa.fa-info,
i.nggpl-toolbar-button-comment.fa.fa-comment {
display: none;
}
/** Adjust opacity of the info bar in NextGEN Pro Lightbox */
.galleria-theme-nextgen_pro_lightbox .galleria-info {
opacity: .5 !important;
filter: alpha(opacity=85) !important;
}
/** Fix “curling” prices in add-to-cart panel */
#ngg_add_to_cart_container .nggpl-price_field,
#ngg_add_to_cart_container .nggpl-total_field {
width: auto !important;
max-width: auto !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment