Forum Moderators: phranque

Message Too Old, No Replies

<a> and <img> with no border and underline

         

kumarsena

4:38 pm on Sep 24, 2004 (gmt 0)

10+ Year Member



i have set all my imgaes to have a border my using css. but one or two imgages may need no border,

so i did the following:

css class:

.noborder{
border: 0px solid #000000;
text-decoration:none;
}

and html

<a class="noborder" href="#">
<img class="noborder" src="#" height="31" width="88"></a>

but it doesnt work,

how do i solve this, any ideas?

kumarsena

7:06 pm on Sep 24, 2004 (gmt 0)

10+ Year Member



ok people no worreis got it sorted, firstly i was working with teh wrong css filw (same name, diff version),

then had to change the code to this...

a.noborder, img.noborder{
border: 0px;
text-decoration:none;
}