Click to See Complete Forum and Search --> : border help please


sushigirl
08-03-2003, 03:54 PM
Hello
Im new in html and I can use some help
go there http://www.freewebs.com/sushigirl/indexsushi.html and tell me how to get images without border nothing, no color no line...
Thank you
The code Ive use for is: <TABLE border="0" cellpadding="0" cellspacing="0">

Thank you
Nadia

Khalid Ali
08-03-2003, 03:56 PM
add the followingin the head sectionof your html pages

<style type="text/css">
img{
border:0px;
}
</style>

it should take care of it

PeOfEo
08-03-2003, 03:56 PM
Or modify your image tags like so
<img src="theimage" alt="image" border="0">

sushigirl
08-03-2003, 04:00 PM
Its working
Thank you very much!