Tagged: catalogue
http://27c.d06.myftpupload.com/pricing/
We think the items on our catalogue element are hard to read with the overlay on hover so we’re trying to turn down the opacity. Here’s the CSS I put in, but it’s not working. Any suggestions?
.av-catalogue-overlay {
opacity: 0.2;
}
Hey XTGlobal!
If you change the opacity then the contents inside will become transparent as well. If you only want the background to be transparent then you can do this.
.av-catalogue-list > li:hover { background: rgba(0,0,0,0.2) !important; }
The first three zeroes correspond to an RGB value so you can change it’s color. The 4th value is the opacity.
Cheers!
Elliott
awesome, worked perfect, I also needed help with this
Jon