Image Hover effects with only the background color mask
Hi,
I try to delete the hover effects links with icon and keep the mask background.
For this i add :
<code>
.image_frame .image_wrapper .image_links { display: none !important; }
</code>
I does the trick and it keeps the background color hover mask with a 15px padding at the bottom.
So i add also this css:
<code>
.image_frame .image_wrapper .mask {
bottom: 0px;
padding-top: 15px;
}
</code>
It does the trick but is it the best way to do this ?
Comments
yes, this is the best way to do this.
Thanks!