I need to get rid of all the link styles on the images when hovering. It gives it inline styles like position:relative; overflow:hidden; display:block;. It also gives it a span and a few other things. How would I go about getting rid of all of the effects that occur when hovering over an image. If there is a way in html/php/js that I could do this without editing the source theme files that would be much preferred.
Hey ryan.thames!
Thank you for using the theme!
I’m sorry but you’re using an old version of the theme, 2.4.5. Please download the latest version, 3.0.8, from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Regards,
Ismael
Hey!
Please try and paste the following code to your Quick CSS:
.image-overlay .image-overlay-inside, .avia_transform a .image-overlay {
display: none !important;
}
Cheers!
Rikard
Rikard –
It took away the hover animation but is clearing the rest.
I fixed it. I gave the anchor tag a property of float to override it going to block. Thank you for your help!