I'm new to html coding and coding overall. I've made an website where I've used fancybox 2.1.4 to make an album. Everything on the website works fine, except that it is an small underscore beside every picture in the album. Why is this and how can I remove it?
Thanks!
It's not actually an underscore, you have text-decoration: underline
, removing that got rid of it.
You could modify your css to set the text-decoration to none.
fancybox {
text-decoration: none;
}