Hi,
Just wondering where to insert the code herein to hide alternative text for images.
Need alt ext for search engines but don’t want it being displayed below images on a gallery.
.hidden-alt-text img[alt] {
/* Visually hides the alt text, but keeps it accessible to screen readers */
text-indent: -9999px;
overflow: hidden;
white-space: nowrap;
}
Thanks
James