Hide image title on rollover (portfolio)

Hi, on http://racheltildawolf.com/portfolio-item/sketchbook/
is there a way to hide the title of each image when you roll over it please.
Thanks!

Hi There @lisacole1,

Thanks for writing in! When you add/edit your images in WordPress medial library, you can set title attribute for your images which will display when hover.

If you’re looking for a quick workaround, try adding the following JavaScript code into your X -> Theme Options -> JS area.

jQuery(function() {
  jQuery(".single-x-portfolio .tiled-gallery [title]").removeAttr("title");
});

Hope that helps.

you are a genius! that works perfectly, thank you so much!

You are most welcome. :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.