i used nested frames but i dont want to scroll them saparately i want the scrolling of frames at the same time as any normal page we scroll in browser is it possible in short i want to to use single scroll bar for the frames i am using in my site
i used nested frames but i dont want to scroll them saparately i want the scrolling of frames at the same time as any normal page we scroll in browser is it possible in short i want to to use single scroll bar for the frames i am using in my site
Much will depend upon if your overall design (particularly the dimensions of the iframes visa vis the space required by their contents) will support this without making portions of the content within any one of the iframes inaccessible (unable to be seen). If not, this will still work, but you will end up with a not too good page.
That said, you may set the overflow property of of the pages within the iframes (both their html and body selectors) to hidden:
However, this may not be enough for some browsers. So one should also set each iframe's scrolling attribute to no:Code:html, body { overflow: hidden; }
HTML Code:<iframe src="whatever" scrolling="no"></iframe>
- John________________________
Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate
Bookmarks