View Full Version : Help Please!


Goldie Da Mac
07-06-2003, 11:41 PM
http://www.geocities.com/mkballerz/lionsindex.html

I trying to do a table.

What i wantis just a border around the outside not in between the cells?

Can anyone help?

help aprreciated

burningstars
07-07-2003, 12:18 AM
Try this:


<table border="1" bordercolor="FFFF00">
<tr>
<td style="border:0px"><a href="http://YourURLwithLargeImage.com"><img src="Images/Logos/lionshead.gif" width="70" height="50" border="0"><font size="3" color="FFFF00">Roster 2003/04</a>
</td>
</tr>
<tr>
<td style="border:0px"><a href="http://YourURLwithLargeImage.com"><img src="Images/Logos/lionshead.gif" width="70" height="50" border="0"><font size="3" color="FFFF00">Fixtures 2003/04</a>
</td>
</tr>
<tr>
<td style="border:0px><a href="http://YourURLwithLargeImage.com"><img src="Images/Logos/lionshead.gif" width="70" height="50" border="0"><font size="3" color="FFFF00">Standings</a>
</td>
</tr>
<tr>
<td style="border:0px><a href="http://YourURLwithLargeImage.com"><img src="Images/Logos/lionshead.gif" width="70" height="50" border="0"><font size="3" color="FFFF00">Where We Play</a>
</td>
</tr>
<tr>
<td style="border:0px"><a href="http://YourURLwithLargeImage.com"><img src="Images/Logos/lionshead.gif" width="70" height="50" border="0"><font size="3" color="FFFF00">Directions</a>
</td>
</tr>

christiandude03
07-07-2003, 07:18 PM
An easier way is to put the style on the <table tag, not on the td:


<table border="0" style="border:1px #aaaaaa solid">
<tr>
<td><a href="http://YourURLwithLargeImage.com"><img src="Images/Logos/lionshead.gif" width="70" height="50" border="0"><font size="3" color="FFFF00">Roster 2003/04</a>
</td>
</tr>
<tr>
<td><a href="http://YourURLwithLargeImage.com"><img src="Images/Logos/lionshead.gif" width="70" height="50" border="0"><font size="3" color="FFFF00">Fixtures 2003/04</a>
</td>
</tr>
<tr>
<td><a href="http://YourURLwithLargeImage.com"><img src="Images/Logos/lionshead.gif" width="70" height="50" border="0"><font size="3" color="FFFF00">Standings</a>
</td>
</tr>
<tr>
<td><a href="http://YourURLwithLargeImage.com"><img src="Images/Logos/lionshead.gif" width="70" height="50" border="0"><font size="3" color="FFFF00">Where We Play</a>
</td>
</tr>
<tr>
<td><a href="http://YourURLwithLargeImage.com"><img src="Images/Logos/lionshead.gif" width="70" height="50" border="0"><font size="3" color="FFFF00">Directions</a>
</td>
</tr>