Hi @ildomandatore
Thanks for contacting us!
The arrow icons are being applied as a background image, therefore, we don’t have the ability to change the color of them using CSS. However, you can apply your own images for the arrow icons, if you’d like. Something like this should work:
.soliloquy-container .soliloquy-next {
background: rgba(0,0,0,0.7) url(www.example.com/images/right.png) no-repeat scroll 50% 50% !important;
}
.soliloquy-container .soliloquy-prev {
background: rgba(0,0,0,0.7) url(www.example.com/images//left.png) no-repeat scroll 50% 50% !important;
}
Please let me know if this helps!
-
This reply was modified 2 years, 6 months ago by
bmilligan15.