I am having an issue with the small rounded button on my effect. I want it to be fully opaque and still clickable, but currently it is taking on the opacity of the entire link. If I adjust the z-index, the button goes on top of the link but then the fancybox does not launch.
.img-hover > a {
position:relative;
}
.img-hover {
display:inline-block;
position:relative;
cursor:pointer;
}
.img-hover .hover {
display:none;
background:#000;
border-radius:50px;
height:35px;
width:30px;
font-size:42px;
font-weight:bold;
color:#fff;
padding:10px 15px 20px 20px;
position:absolute;
cursor:pointer;
right:180px;
top:180px;
}
If you'd like to view the code, here is the jsfiddle I created http://jsfiddle.net/W9uju/1/
Thank you for any help in advance!