yeah, I was looking into the faux columns method before I started this topic. But it doesn't work for what Im trying to do. Im not actually trying to make a boarder, but more of a separator.
http://www.omegatranscended.com/2/
Thats the site (well actually its my friends site and Im just trying to help them out, so sorry bout the messy code)
You can see, that it has a banner, with the content below it (that is what would be stretching the page), and then the white line separating that side from the other side, which consists of links and images.
However, try as I might I just cant get that separation line to reach all the way to the bottom.
I was experementing with variations of the faux columns method, as well as putting all of the content inside a div, but that did not seam to work ether (the line just stopped at the end of the <p> tag, and Im not sure why).
I was also looking into the Javascripted method... I would like to stay away from JS if I can... but if its the only way, how can I use the JS variable in the CSS?
HTML Code:
function getScrollXY() {
var scrOfX = 0, scrOfY = 0;
if( typeof( window.pageYOffset ) == 'number' ) {
//Netscape compliant
scrOfY = window.pageYOffset;
scrOfX = window.pageXOffset;
} else if( document.body && ( document.body.scrollLeft || document.body.scrollTop ) ) {
//DOM compliant
scrOfY = document.body.scrollTop;
scrOfX = document.body.scrollLeft;
} else if( document.documentElement && ( document.documentElement.scrollLeft || document.documentElement.scrollTop ) ) {
//IE6 standards compliant mode
scrOfY = document.documentElement.scrollTop;
scrOfX = document.documentElement.scrollLeft;
}
return [ scrOfX, scrOfY ];
}
(thats from
http://www.howtocreate.co.uk/tutoria.../browserwindow)
How can I put the 'scrOfY' variable into the CSS?
HTML Code:
<div style="position: absolute; left: 540px; top: 0px; width: 5px; height: scrOfY; background: #ffffff; z-index:1; "></div>
For some reason I doubt that would work...
Thanks for the suggestions though

.
So... what should I do?