I'm trying to get rid of the default thumbnail thin grey border in Twitter Bootstrap.
I can target the borders, for example if I use:
.thumbnails > li { border:1px solid red; }
all the thumbnail borders change to red.
But if I use:
.thumbnails > li { border:0; }
it still leaves the borders with a thin grey line. I cannot get rid of that. I've tried to change the color to white (my background is white, so it could be a solution) but it doesn't work.
How can I get rid of that thin grey border?
Best Solution
Thumbnail borders are applied to the
.thumbnail
element, inside the<li>
. Anyway, the "extra" thin line you talk about could be thebox-shadow
applied to that class.So you can try: