Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- The forum ‘Requests and Feedback’ is closed to new topics and replies.
Forum closed. Use forum at Wordpress.org: Gmedia Support
Forum
In AlbumView module, when an image has white where the arrow is located it does not follow command. Is there a way to change next button color or add text-shadow: so it comes visible.
Thanks
Hello, go to edit gallery -> Advanced Settings -> and put code below to the Custom CSS field
/* Shadow */
.gmAlbumsViewAccordionAlbumCoverPrevNextButton {
-webkit-filter: drop-shadow( 1px 1px 2px #000 );
filter: drop-shadow( 1px 1px 2px #000 );
}
/* Color for arrows */
.gmAlbumsViewAccordionAlbumCoverPrevNextButton svg
{
fill: #cccccc !important;
}
Example:
Or update the module (we added a shadow)