This website that I\'m working on has annoying alt tags popping up when you hover over links in the sidebar. I didn\'t put these alt tags in. But, I can control the CSS... I
You can use CSS to hide images with any alt text, for example alt = "LinkedIn"
[alt="LinkedIn"] { display: none !important; }
You can also hide the image with title for example title = "Company logo"
[title="Company logo"] { display: none !important; }