Jump to content

Can't see lightbox nav arrows when on white images


chilihead

Recommended Posts

  • 2 weeks later...
Posted

Text shadow would do it.

.class-name {
text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
}

That'll create a black 'glow' from under the white text (since it is a web font). the 5px is the amount of blur if you want to play around with that. The 1 in the rgba code is opacity. 0.5 would be 50% opaque.

Posted

The arrows are font-awesome icons, so look at http://fortawesome.github.io/Font-Awesome/icons/ to see the icons available.

Using the gallery specifically, the selectors for the left/right icons are:

#elGalleryImageNav_next > i.fa-angle-left:before{
	
}

#elGalleryImageNav_next > i.fa-angle-right:before{
	
}

Not sure if you can add anything much to them using css, but if you want to change them to a different icon then the following would change them to the arrow-left and arrow-right equivalents (again, see that link above)

#elGalleryImageNav_next > i.fa-angle-left:before{
	content: "\f060";
}

#elGalleryImageNav_next > i.fa-angle-right:before{
	content: "\f061";
}

 

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...