Please forgive me for this cheap question.
Please take a look at the code below:
This code puts a border around tht tables display the aqua color.
The problem I have is that the border color is too big.
How can I format the table in such that I still get the border around the tables, with the same color but the border lines are much thinner?
I hope this question is clear.
Thanks in advance.
Again, sorry for the cheap question.
Please take a look at the code below:
Code:
<table width='100%' border=1 cellspacing=0 cellpadding=0 bordercolor="aqua">
<tr>
<td class=bodytextcolor width='33%' align=center nowrap>
<img src="Images/dress_search.jpg" align="center" WIDTH='130' HEIGHT='125'>
<br/>Yosemite National Park
<br/><font color=green>10 or more:</font>
<br/><font size=-1><a href="product.asp?id=10">More...</a></font>
<br/><form action="addprod.asp" method="POST" onSubmit="return checkItems(this)">
<input type="hidden" name="fproductid" value="10">
</form></td>
<td class=bodytextcolor width='33%' align=center nowrap>
<img src="Images/position5_8cd0a.jpg" align="center" WIDTH='130' HEIGHT='125'>
<br/>Yosemite Falls
<br/><font color=green>10 or more:</font>
<br/><font size=-1><a href="product.asp?id=11">More...</a></font>
<br/><form action="addprod.asp" method="POST" onSubmit="return checkItems(this)">
<input type="hidden" name="fproductid" value="11">
</form></td>
<td class=bodytextcolor width='33%' align=center nowrap>
<img src="Images/Fossil010505.jpg" align="center" WIDTH='130' HEIGHT='125'>
<br/>Yosemite view
<br/><font color=green>10 or more:</font>
<br/><font size=-1><a href="product.asp?id=12">More...</a></font>
<br/><form action="addprod.asp" method="POST" onSubmit="return checkItems(this)">
<input type="hidden" name="fproductid" value="12">
</form></td>
</td>
</tr>
</table>
This code puts a border around tht tables display the aqua color.
The problem I have is that the border color is too big.
How can I format the table in such that I still get the border around the tables, with the same color but the border lines are much thinner?
I hope this question is clear.
Thanks in advance.
Again, sorry for the cheap question.