I think this is the code in question?
Code:
div.corner{
position:absolute;
right:0px;
top:-1px;
z-index:0;
}
This tells the image to stay on the right side no matter what. What I came up with is:
Code:
div.corner{
position:absolute;
right:0px;
top:-1px;
z-index:0;
}
div.placement{
position:relative;
float:right;
width:800px;
height:1px;
}
<div class="placement"><div class="corner">Hi!</div></div>
This tell the image where to be, and has a minimum width so it won't move to far. (Think of it as a 800px box glued to the right side of the screen
).
Let me know if it works
Bookmarks