To add on to previous experts comments,
write the css for img and anchor in a generic fashion to remove the borders. Add below to ur application CSS file.
a{
border:0;
}
img{
border:0;
}
In case of altering border for certain images .. you can use css class
.imgNoBorder{
border:0;
}
.imgBorder{
border:2px;
}
<img src="a.jpg' class="imgNoBorder"/>
<img src="b.jpg' class="imgBorder"/>
-Murali*
-Murali*
Main Topics
Browse All Topics





by: TempelmanPosted on 2009-07-03 at 01:50:10ID: 24770945
Add border="0" to the hyperlink.... By default HTML will create that ugly blue border when you use a picture as a URL ;).