Yep, much better. I would also recommend changing this:
Code:
p.pos_absolute {
right: 5px;
top: 325px;
position: fixed;
}
p.pos_absolute2 {
right: 5px;
top: 375px;
position: fixed;
}
p.pos_absolute3 {
right: 5px;
top: 425px;
position: fixed;
}
to this
Code:
p.pos_absolute {
left: 5px;
top: 325px;
position: fixed;
}
p.pos_absolute2 {
left: 5px;
top: 375px;
position: fixed;
}
p.pos_absolute3 {
left: 5px;
top: 425px;
position: fixed;
}
That code could be a lot more efficient, but anyhow, keeping those buttons on the left is much safer, as it will prevent a lot of people seeing this:
pos-abs.png
Bookmarks