Re: [css-d] Getting rid of the line under a hyperlinked image

2006-03-30 Thread kuasar
a{text-decoration:none;} 2006/3/30, Paul Novitski [EMAIL PROTECTED]: At 11:45 PM 3/29/2006, Joanne wrote: I have image and a text hyperlinked together. In IE only the text is underlined, but in Firefox Opera, the image is too. How do I get rid of it? Try img { border: none; } Paul

Re: [css-d] Getting rid of the line under a hyperlinked image

2006-03-30 Thread Joanne
I have image and a text hyperlinked together. In IE only the text is underlined, but in Firefox Opera, the image is too. How do I get rid of it? Try img { border: none; } That's already in my css code. It doesn't stop the hyperlink underline on an image in Firefox or Opera.. Joanne

Re: [css-d] Getting rid of the line under a hyperlinked image

2006-03-30 Thread kuasar
what about giving the image a class and applying properties only to it? 2006/3/30, kuasar [EMAIL PROTECTED]: a{text-decoration:none;} 2006/3/30, Paul Novitski [EMAIL PROTECTED]: At 11:45 PM 3/29/2006, Joanne wrote: I have image and a text hyperlinked together. In IE only the text is

Re: [css-d] Getting rid of the line under a hyperlinked image

2006-03-30 Thread Philippe Wittenbergh
On Mar 30, 2006, at 5:05 PM, Joanne wrote: I have image and a text hyperlinked together. In IE only the text is underlined, but in Firefox Opera, the image is too. How do I get rid of it? Try img { border: none; } That's already in my css code. It doesn't stop the hyperlink

[css-d] Getting rid of the line under a hyperlinked image

2006-03-29 Thread Joanne
I have image and a text hyperlinked together. In IE only the text is underlined, but in Firefox Opera, the image is too. How do I get rid of it? I took a gamble at a img{ text-decoration: none; } But then realised it's not actually text. Joanne

Re: [css-d] Getting rid of the line under a hyperlinked image

2006-03-29 Thread Paul Novitski
At 11:45 PM 3/29/2006, Joanne wrote: I have image and a text hyperlinked together. In IE only the text is underlined, but in Firefox Opera, the image is too. How do I get rid of it? Try img { border: none; } Paul __