Reputation: 3214
I'm working on a website: http://www.allaboutwinecellars.com
And on one of the galleries (the Accesory page) there are blue lines between the pictures and I don't know why, the layout is exactly the same as the first page.
Can anyone figure out why those lines are there?
Here is the first page (the correct one): http://allaboutwinecellars.com/gallery.html
Here is the second page (the one with blue lines): http://allaboutwinecellars.com/gallery-2.html
Edit: I tried adding outline:none;
to my anchor tag CSS rules and it did not fix the problem.
Upvotes: 2
Views: 1921
Reputation: 78650
It's actually a blue underline.
Use text-decoration: none;
.
Upvotes: 0
Reputation: 61812
The issue is your anchor
tags. You need to explicitly set the text-decoration
property. The line that you're seeing is the blue underline representing a hyperlink. It looks like you already have properties defined that alter anchor
's behavior. Simply add to it:
a {
text-decoration: none;
outline: none;
}
Upvotes: 5