View Full Version : Userlookup help please?


icee_jasmine
09-06-2004, 07:53 AM
Okay what's the code to positioning an image to the top left corner in your lookup?

Alcy
09-07-2004, 09:52 PM
<img src="IMAGE.GIF" style="position: absolute; top: 0px; left: 0px;">

Or,

<style type="text/css">
.upper {
position: absolute;
top: 0px;
left: 0px;
}
</style>

<img src="IMAGE.GIF" class="upper">