Last active
July 18, 2018 14:15
-
-
Save tokopress/6bcb8bf413c48eada2110651ea1b47c9 to your computer and use it in GitHub Desktop.
Bookie - Add background color overlay in slider
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.toko-slider-wrap .toko-slides .toko-slide { | |
z-index: 1; | |
position: relative; | |
} | |
.toko-slider-wrap .toko-slides .toko-slide:before { | |
background-color: red; | |
opacity: 0.3; | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
content: ""; | |
z-index: -1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment