Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Is the overlay of the pics on this site a plugin or css modified? WordPress

  • SOLVED

This site is "Adult Related". [[LINK href="http://www.cupidsescorts.ca/escorts/"]]http://www.cupidsescorts.ca/escorts/[[/LINK]]

If you hover over one of the ladies you'll see their stats and info as an overlay. I looked at the source code and the only plugin I saw that might do that was the fancybox plugin. Checked out the plugin but I'm still not totally sure if it is responsible. Just wanting to know if I can use a plugin or if I have to modify the css. Thanks in advance.

Answers (1)

2014-07-21

Bob answers:

No hover effect is not by fancybox.


Bob comments:


.models li a .quick-glance {
position: absolute;
left: 0;
bottom: 0;
z-index: 9999;
width: 100%;
height: 100%;
background-color: rgba(219,187,202,0.95);
display: block;
opacity: 0;
}

.models li a:hover .quick-glance {
opacity: 1;
}




Notice <strong>Opacity</strong> in above code. the effect is because of it.