How can I fix my web page in frame?
-
In my Index page, i have created 3 frames. 1. Top for banner 2. left for navigation 3. right for opening the page in this frame. i want to fix my web page which is going to open in frame 3. I want vscroll but not hscroll.
-
In my Index page, i have created 3 frames. 1. Top for banner 2. left for navigation 3. right for opening the page in this frame. i want to fix my web page which is going to open in frame 3. I want vscroll but not hscroll.
Firstly, I suggest that you don't use frames for the simple reason: they're very outdated, and were a bad concept from the start. If you want to load content in a frame-like manner, I'd advise loading the data into the page dynamically using some form of server-client interaction (JavaScript and PHP for example). However, if you do want to go the frames route, then you can set the frame
scrolling
property toauto
; then scrollbars will be used when there is vertical overflow. If you don't want horizontal scrollbars then just make sure your framed page doesn't have horizontal overflow (put it in a<table>
with a width of 95%, for example). Regards, --Perspx"The Blue Screen of Death, also known as The Blue Screen of Doom, the "Blue Screen of Fun", "Phatul Exception: The WRECKening" and "Windows Vista", is a multi award-winning game first developed in 1995 by Microsoft" - Uncyclopedia Introduction to Object-Oriented JavaScript
-
Firstly, I suggest that you don't use frames for the simple reason: they're very outdated, and were a bad concept from the start. If you want to load content in a frame-like manner, I'd advise loading the data into the page dynamically using some form of server-client interaction (JavaScript and PHP for example). However, if you do want to go the frames route, then you can set the frame
scrolling
property toauto
; then scrollbars will be used when there is vertical overflow. If you don't want horizontal scrollbars then just make sure your framed page doesn't have horizontal overflow (put it in a<table>
with a width of 95%, for example). Regards, --Perspx"The Blue Screen of Death, also known as The Blue Screen of Doom, the "Blue Screen of Fun", "Phatul Exception: The WRECKening" and "Windows Vista", is a multi award-winning game first developed in 1995 by Microsoft" - Uncyclopedia Introduction to Object-Oriented JavaScript