And you can position the image/content exactly where you want by wrapping it in a div or span with id or just giving the image an id so that a stylesheet rule can affect it uniquely. <img id="madeInUSA" src="xxxxxx.gif" />
#madeInUSA {position: absolute; top: 23px; right: 23px;} and a position: relative; on the containing element (such as .centerColumn{position: relative;} ) might be the easiest way to handle it. Of course you would adjust the dimensions as desired.


Reply With Quote
