Resizing
2005/12/30 06:44
Viewed 10402 times
Replies: 2/7

Hi,
With the rollbar, when I resize the browser window, all of the rollbar doesn't resize to the new width (same if resize the div that the rollbar is contained in).
Is it possible to make the rollbar resize tp the width of it's container, either automatically or by calling a function?
Thanks

Re: Resizing
2006/01/03 10:28
Viewed 11116 times
Replies: 1/5

Yes, I am having the same issue. Any solutions? Thanks & great job!!! Cage

last
Re[2]: Resizing
2006/01/19 22:01
Viewed 13549 times
Replies: 1/4
by doc

flag the onresize event and call changeSkin() function ... this is a temp fix, but effective

example:

function bfix() {
changeSkin('skin-winxp');
}

function init() {
//this function already exists between HEAD tags
//...at end of function add following event flag
window.onresize = bfix;
}

NOTE this fix has NOT been fully tested, but works under IE 6x and Mozila

dRB

last
Re: Resizing
2006/02/10 21:14
Viewed 8160 times
Replies: 0/0
by tvw

the best cross browser way to do this is simply add onResize="window.location.href = window.location.href;" to your body tag. dont use it in a function.

last
Google