Here is where the positioning is set:
Code:
w=ns6 || window.opera? window.innerWidth-crosslogo.offsetWidth-20 : ietruebody().clientWidth-crosslogo.offsetWidth-10
h=ns6 || window.opera? window.innerHeight-crosslogo.offsetHeight-15 : ietruebody().clientHeight-crosslogo.offsetHeight-10
If you would rather the link be centered, use:
Code:
w=ns6 || window.opera? (window.innerWidth-crosslogo.offsetWidth)/2 : (ietruebody().clientWidth-crosslogo.offsetWidth)/2
h=ns6 || window.opera? window.innerHeight-crosslogo.offsetHeight-15 : ietruebody().clientHeight-crosslogo.offsetHeight-10
However, it will then be over or, possibly under, your other content. To simply adjust the positioning, play with the red numbers. The first line is the horizontal (distance from the right edge) positioning the second one, vertical (distance from the bottom edge). The first figure in each line influences the Mozilla (FF&NS) and Opera positioning, the second figure IE.
Bookmarks