Hello, I am kinda new at webpage design and want to create a menu for my website. I used frames originally but when i click on a link it comes up in the side that is supposed to just remain the menu instead of the main frame. I dont know how to fix this. So i guess my question is either how do i fix this? OR i have heard there is better ways to do menus for example something about scripting and when the menu is changed the changes are reflected on all pages. i want something like that which is why i used frames. How else could i make a menu docked on the left side of the screen about 20, 80% and use it on every page?
frame setup ----------- <FRAMESET cols="20%,80%"> <FRAME name="left" src="menu.htm"> <FRAME name="right" src="content.htm"> </FRAMESET> menu.htm -------- <p>Menu</p> <a href="home.htm" target="right">Home</a> <a href="about.htm" target="right">About Us</a> <a href="contact.htm" target="right">contact</a> ------------- left = 20% = menu holder right = 80% = where your content appears In your menu file, you want to set the target of the link to the name of the right side. Follow this example and you will be fine. Then you can further set your noresize scrolling, etc