Posts: 2,322
Name: Keith Marshall
Location: West Hartford, CT
|
There is a border attribute in the IMG tag that you can set to eliminate the image border when it is nested inside an anchor:
HTML Code:
<a href="#">
<img src="image.gif" border="0" alt="" />
</a>
As for the text underline, CSS styles can solve that:
HTML Code:
TO AFFECT A SINGLE LINK:
<a href="#" style="text-decoration: none">
Link
</a>
TO AFFECT ALL LINKS GLOBALLY:
<style type="text/css">
a:link, a:active, a:hover, a:visited {
text-decoration: none;
}
</style>
__________________
<mgraphic /> - I don't have a solution but I admire the problem.
|