Link to home
Start Free TrialLog in
Avatar of paulwhelan
paulwhelan

asked on

frames scroll

i have this code...

<frameset rows="18,20,*"  frameborder="0" framespacing="0" border="0">

two frame src tags and then this final one....

<frame src="main.html" NAME="3" scrolling="yes" border="0" marginheight="0" fram
eborder="0" >

the problem is that sometimes the contents of "3" are too big for the browser and it will scroll but when the contents fit on the page i still get a space for a scroll bar (with no scroll bar in it)

can it be made so that the part on the right for a scroll bar will only appear when the user needs to scroll
                             
Avatar of fire_fly
fire_fly

that space onthe right is an intrinsic part of IE, and cannot be removed.  If scrolling is set to no, it will never show a scroll-bar, but the space will always be there.
ASKER CERTIFIED SOLUTION
Avatar of xabi
xabi

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hi paulwhelan,
The only way you can remove schroll bar for sure is to put scrolling="no".
You can try with scrolling="auto".
To put different scrolling parameters  is useful sometimes, for example if you have a frame for banner add it's ok to put scrolling="no".

good luck