Hey,
Oftentimes I'll use a table, or a <div> element would work as well. In addition, if you need to add padding away from a border for some reason, you can set the padding-left, padding-right, padding-top, or padding-bottom attributes of almost any tag in the HTML language. If you are setting all 4, a shortcut is to set the padding attribute to a value (represents all 4), as such:
<span style="padding-left:20px;padding-right:20px;"><control></span>
Brian
|