Using fancybox 2.1.5 in wordpress, when I hover over the left or right side of the pic, I always get a grey overlay instead of the regular transparent one.
Can someone take a look, what has gone wrong?
http://homesweet.homelinux.org/wordpress/index.php/2013/09/06/mindennapok-25/
(just click any of the pics)
Normally it’s not a good idea to set css rules to global elements but use specificity instead.
You have this css rule in the line 62 of your style.css file :
That rule affects to all
<a>
anchors, including fancybox (nav arrows) anchors.Try changing it into something like
or target the parent like
so it will only affect to the elements it should.