PauliusR
Forum Replies Created
-
That’s great news. And thank you for all of your rapid responses. I am blown away by how productive one can be ??
The website is on localhost, not live yet, but I can assure you that site setup is not an issue in this case, because I have already tried a fresh new installation with a starter site loaded. Same result.
I have also tested an earlier version of Blocksy (1.8.4.5) and.. no issues! Browser is not outputting caption text when hovering over a featured image. So there is definitely something in the latest version of Blocksy that’s causing it.
I have made a couple of screenshots. I hope these explain the situation better:
- This reply was modified 3 years, 3 months ago by PauliusR.
I might have not explained it well enough. One of the solutions to my problem could be:
<script> jQuery(document).ready(function($) { $('img[title]').each(function() { $(this).removeAttr('title'); }); }); </script>
This little piece of JS does the trick. However, it is not the best of solutions as it hides the title meta completely, but at least I don’t get to see raw HTML caption on mouse over. I would prefer displaying Title meta info on mouse over instead of caption.