What I mean by adding a column is to use css to put in one div block to the left and another (float left) on the right - then put some graphical content in the right div.
The body construction would be something like:
<body>
<div id="wrapper">
<div id="col1">
stuff in left column
</div>
<div id="col2">
stuff in right column
<img source="whatever> blah...
</div>
</div>
</body>
This will keep the page looking a bit more lively within your browser "fold", rather than block text all the way down.
The body construction would be something like:
<body>
<div id="wrapper">
<div id="col1">
stuff in left column
</div>
<div id="col2">
stuff in right column
<img source="whatever> blah...
</div>
</div>
</body>
This will keep the page looking a bit more lively within your browser "fold", rather than block text all the way down.