PDA

View Full Version : thumbnail border


jor133d
01-25-2007, 10:40 PM
http://destreedesign.com/blog/index.php?showimage=10

Under my recent photos, it shows the thumbnail row but there is a blue outline around them.

I can't figure out how to remove that.

Can someone help me out?

Dkozikowski
01-25-2007, 11:04 PM
set the border to 0 under .current_thumbnail in your CSS

like so,

border:0;

if that does not work, try setting a rule like this:

img.current_thumbnail{
border:0;
}

jor133d
01-25-2007, 11:12 PM
I can't get either of those to work...

Dkozikowski
01-25-2007, 11:18 PM
put this in your css file

a img{
border:0;
}

that will remove all image borders around links sitewide.

jor133d
01-25-2007, 11:25 PM
but on my big image I want a border..

Dkozikowski
01-25-2007, 11:28 PM
it wont remove any borders you set, just the blue borders made by links. You want a blue link border around your big images?

you can also try this if your concerned
Its exactly what i posted above but i forgot to add the "a"

a img.current_thumbnail{
border:0;
}