In the php script that I'd like to modify, it has a file for the header & footer part of the web page, and a file for the content part of the web page. The content part has a left and right column. Underneath these columns, I'd just like to add a box for more content, all the way across the web page, underneath the two columns.
The code shows below a simplified version of the content of the page.
When I add something below <!--End Right Column--> it appears under the right column. Can you provide some basic code which would add a box that stretches across the web page underneath the left and right column?
Any help would be appreciated. Thanks.
Code:
<!--Begin Left Column--><title>ads</title>
<div id="column-left-1">
</div>
<!--End Left Column-->
<!--Begin Right Column-->
<div id="column-right-1">
</div>
<!--End Right Column-->
|