Hello Everyone!
I have a 4×4 icon grid on our home page and and once the mouse is hovered over a section and the flip box appears a small title box pops up along with the mouse that obstructs the view of the description. Is there a way to eliminate this so you can read the flip box clearly?
Thank you all for your time.
– Nolan
Hey Nolan,
This can be done via JS. Please provide admin info so we can try and work it out.
Best regards,
Jordan Shannon
Hi,
Thanks for the info, but can you place it into the private area so that is only visible to admins?
Best regards,
Jordan Shannon
Yep I’m sorry about that.
Hi,
I added the following and it works:
jQuery(document).ready( function() {
jQuery(function(){
jQuery('.avia-icon-grid-container a').hover(function(e){
jQuery(this).attr('data-title', jQuery(this).attr('title'));
jQuery(this).removeAttr('title');
});
});
});
Best regards,
Jordan Shannon
Thank you Jordan, it looks great and exactly what I was looking for. Have a great day man!
Hi,
Perfect, I’m happy to help! If you need anything else, please let us know here in the forums.
Best regards,
Jordan Shannon