yea these kinda small things can be such a pain in the ass...
Anyway, found some new shit i didnt know about, the 'bottom: ...', 'right: ..' , etc. so called 'positioning properties':
http://www.w3schools.com/Css/css_positioning.asp
So i did this inside another div id (and inside another div class), to position a link in the bottom right:
.commentslink a {
position: absolute;
bottom: 18px;
right: 18px;
}
and its working perfect
