PDA

View Full Version : Ugly border...



kmdesigns
02-13-2005, 04:14 PM
Is there a way, in Dreamweaver, to make sure that photos that link to other pages do not have a border? I want text links to be a certain color & photos to be borderless.
Some pages are like that & for some strange reason, other pages automatically outline images that are links... any suggestions? Has anyone else run into this annoying problem?

Easywebdev
02-13-2005, 04:31 PM
I'm not sure about dreamweaver settings but if you edit the code then in the image tag itself you can add border="0" or if you are using a style sheet add img{border; none;}

cyanide
02-13-2005, 05:23 PM
Easywebdev has the straight-up html/css way.
In Dreamweaver, click the image and in the properties toolbar, there is a text-box for the border. Just add a 0.

Faglork
02-15-2005, 12:21 PM
Just in case some css-noobee reads this: there's a typo in the code, should have a colon instead of a semicolon:

img{border; none;}
should read

img{border: none;}

Alex

kmdesigns
02-20-2005, 11:43 AM
Thank you all very much!