Add Shadows to ShopIsle Slider Text and Button
This guide shows how to add drop shadows to the ShopIsle slider's header text, subtext, and button using custom CSS in the Advanced CSS Editor.
Important notice: This product is now in maintenance mode and is no longer being actively developed or supported. Updates and bug fixes will not be provided unless they relate to security concerns.
Start off by installing the plugin Advanced CSS Editor and in Appearance -> Customize -> Advanced CSS Editor add the following code which applies to you:
Slider Header Text:
.mb-30{
text-shadow: 2px 2px 3px black;
}Slider Sub Text
.mb-40{
text-shadow: 2px 2px 3px black;
}Slider Button
.btn.btn-border-w{
box-shadow: 2px 2px 3px black;
}Details about text shadow could be seen here:
