PDA

View Full Version : IMAGE hyperlink problem



Keagle
May 24th, 2006, 02:34
Okay, i've coded the css, done the graphics, done the html and done the html for my template but because it is going to be a radio station, i need winamp/wmp/real images. I have them hyperlinks and so on, but a blue border comes out around them, how do i change this border to none?

Johnson
May 24th, 2006, 07:56
Add in border="0"

iBrightDev
May 24th, 2006, 08:07
if it is in the html where you are pulling your images to the document, then do what Mr. J said, but if the images are being called in the css, then use the following code:

img {
border: 0px none #FFFFFF;
}

I believe that will work across all images on the site just like using body { stuff here }, ortherwise, just put the border code in each category that is calling the images.

Keagle
May 24th, 2006, 13:51
Yay its working! Cheers guys :)