you other option would be to use absolute positioning (not often a good choice, but who knows)
<html>
<head>
<title>Untitled</title>
<style type="text/css">
<!--
#topright {
position: absolute;
right: 0;
top: 0;
width: 50px;
height: 50px;
background-color: #ff0000;
}
-->
</style>
</head>
<body>
<div id="topright">
</div>
</body>
</html>
Main Topics
Browse All Topics





by: SmileMagicianPosted on 2005-07-19 at 21:58:33ID: 14481629
I think your best bet might be to set your image as a background so it will be there even when the window is minimized at any percentage.
.banner_right {
background-position: right top;
background: url(/path/to/img.jpg) no-repeat;
z-index:1;
}
Let me know if it works for you.
SmileMagician :)