fancybox - small underscore beside every picture

48 Views Asked by At

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?

link to my website

Thanks!

2

There are 2 best solutions below

0
fqhv On BEST ANSWER

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;
}
0
Sébastien On

This is not an underscore, it is the underline created by the surrounding link. You can remove the underline on those links with the following CSS declaration:

a.fancybox {
    text-decoration: none;
}