|
|
|
|
||||||
![]() |
|
|
LinkBack | Outils de la discussion |
|
|
#1 |
|
Messages: n/a
Hébergeur: |
You can see the issue here. I am having an issue with scrollbars
where they are extending past the bottom of the screen and only by a hundred or so pixels. How can I get it so that the frame has scrollbars that actually touch the status bar. http://botnode.com/src/RECREATE_IFRA...dex_frame.html Or as an image. http://botnode.com/src/RECREATE_IFRA...sue_iframe.PNG -------- The page layout itself uses heavy frames and it is a bit complicated. But, it is what it is. <html> <head> <title>Test</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <!-- index --> <script language="javascript" type="text/javascript"> <!-- function init() { var ls = window.location.search; var pageLoaded = false; if (!pageLoaded) { try { top.top_nav.document.location.href = 'my_nav_page.html'; } catch(err) { // Err setting document location. } } } //--> </script> </head> <frameset rows="*" border="0" framespacing="0" onload="init()" > <frame name="top_nav" src="blank.html" frameborder="0" scrolling="noa" noresize> </frameset> </html> ---------------- <html> <head> <style> body { background-color: #ff9999; } </style> </head> <!-- my nav page (has iframe) --> <body onload="bottom.location='bottom_content_frame.html '"> <div style="height: 40px; width: 100%; background-color: #f0f0f0; border: 1px solid #000;"> Navigation Stuff ; link 1 | link 2 </div> <div style="height: auto; width: auto;"> <iframe src="/blank.html" id="bottom" name="bottom" scrolling="auto" frameborder="0" width="100%" height="100%"></iframe> </div> </body> </html> ---------------- <html> <head> <title>Test</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <frameset cols="90, *" border="0" framespacing="0" > <frame name="left_nav" src="bottom_left_nav.html" frameborder="0" scrolling="auto" noresize> <frame name="more_content" src="real_bottom_content.html" frameborder="0" scrolling="auto" noresize> </frameset> </html> ---------------- <html> <head> <style> body { background-color: #99ff99; } </style> </head> <!-- bottom left nav --> <body> Left Nav </body> </html> ---------------- <html> <head> <style> body { background-color: #9999ff; } </style> </head> <!-- real_bottom-content.html --> <body> <div style="height: 800px; border: 4px solid #000;"> Real Bottom Content Real Bottom Content Real Bottom Content Real Bottom Content </div> </body> </html> |
|
![]() |
| Outils de la discussion | |
|
|