Hello Kriesi,
Thank you again for such a great theme and awesome support! We love it so much we just purchased a few more licenses.
We are trying to do something that I wasn’t able to find much covered in the threads.
We are trying to have icons that when you hover over them with your mouse, text appears under it. The text should also be ‘clickable’ if a link is provided for that appearing text.
The caption of the icon should also be lowercase (non text transform)
More notes in content section below.
Thank you for all your help making this happen =)
Hey tlchase,
Please enable the custom css class field: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and then edit your icon and text block elements and give them custom CSS class (“my-icon” for icon element and “my-textblock” for text block element in example) and then add following code to Quick CSS in Enfold theme options under General Styling tab
.my-textblock { opacity: 0;}
.my-icon:hover + .my-textblock { opacity: 1; }
Best regards,
Yigit