Making News boxes

E

Ethan Wood

Hi I am trying to make 3 news boxes side by side on my home page. The
idea would be that it would have a short little summary of the topic
and then you would click a more link at the bottom to read the full
article. Please help if you can.
 
R

Ronx

Simplest way: Create a single row, three column centred table, and place
each news item in each cell.
In Code View:
<div align="center">
<table cellpadding="3" cellspacing="0" border="1" width="75%">
<tr>
<td width="33%">News item 1<br>
<a href="foo1.htm>...more</a></td>
<td width="34%">News item 2<br>
<a href="foo2.htm>...more</a></td>
<td width="33%">News item 3<br>
<a href="foo3.htm>...more</a></td>
</tr>
</table>
</div>
 
Top