Tagged: CSS, image overlay
Hi,
I was wondering how to disable the image overlay javascript all together. Basically if you go to the page (in the private content area), you will see a list of accounts with their logos. When I move the cursor over the logo image, the theme automatically adds some CSS codes which breaks my design. I’ve figured out a way to hide the overlay the CSS adds, but I still can’t figure out how to disable the theme from adding the CSS codes. I’m assuming it’s done via some kinda javascript. Please advise.
Hi jacktherippa!
Add this to your custom CSS.
.fx-account > a {
display: inline !important;
}
Regards,
Elliott
thanks. that did the trick!