woomonkey1234
01-24-2005, 01:08 AM
How can you make it so that your menu on your site isn't able to be resized by your visitors? See, mine moves.
http://blueshimmers.cjb.net
http://blueshimmers.cjb.net
|
View Full Version : how do you get an immovable menu? woomonkey1234 01-24-2005, 01:08 AM How can you make it so that your menu on your site isn't able to be resized by your visitors? See, mine moves. http://blueshimmers.cjb.net pb&j 01-24-2005, 01:18 AM looks like you already have it answered.... <frame src="menu.html" noresize> woomonkey1234 01-24-2005, 01:57 AM lol yeah, thanks. how about, do you know how to make links that AREN'T saved to your computer and uploaded somewhere to open in the other part of your screen? i know im asking a lot of questions, but i promise this is the last one!!! pb&j 01-24-2005, 02:10 AM ummm... what? can you explain a bit further or provide an example? woomonkey1234 01-24-2005, 02:14 AM Ok. Say there was a website somewhere, and I wanted to make it open in the other part of my screen (not the menu) but I wanted you to click the link IN the menu and then it open in that other side... how would I go about doing that? (Because I know how to open links that are made in notepad, im talking about internet links) and it was approved by that person (who owns the site im wanting to open in side 2) too... lol just clearing that up :) pb&j 01-24-2005, 03:54 AM step1. add the NAME property to your FRAME tag... <html> <head> <title> Blue Shimmers </title> </head> <frameset cols="15%,85%"> <frame src="menu.html" noresize> <frame src="side.html" name="side"> </frameset> </html> step2. add a link in your "menu.html" page like so... <a href="URL or page name" target="side"> text or image here </a> woomonkey1234 01-24-2005, 11:12 PM THANK YOU SOOOOOOOOO MUCH!!!!!!!!!!!! Works like a charm. U r SUCH a big help!!!! pb&j 01-24-2005, 11:51 PM no worries. hope all gets better in future. :D |