Hi,
I think you'll need to float them as pairs rather than blocks (if I understand you correctly). I assume you want to keep each section together.
CSS
Code:
<style type="text/css">
.left {
float:left;
font-weight: bold;
}
.right {float:right}
</style>
HTML:
Code:
<p class="left">Name</p>
<p class="right"><?=$name?>Line1</p>
<br style="clear:both" />
<p class="left">Link</p>
<p class="right"><?=$url?>Line2 <br /> line 2.5</p>
<br style="clear:both" />
<p class="left">Space</p>
<p class="right"><?=$MaxSpace?>MB Line3</p>
<br style="clear:both" />
Something like that should work.
Paul
Bookmarks