|
-
Aug 18th, 2004, 01:14 PM
#1
Thread Starter
Addicted Member
Help with Frames...
Hi People..
I have some issues regarding a webpage..
I'm doning a webpage that contains two frames.. left and right
well, the one in the right is the main page which has all the body of the website... the one on the left is just like a quick navigating option..
the left frame has a couple of shapes.. what i want to do is that if the user click on a shape on the left frame, the frame in the right would position himself in a seccion of the website...
for example, is they click on the shape that has a laber with "Contacts"
it will make the right frame move automatically to the section were the emails are...
i'm not really good with Front Page and i'm starting to used it!!
Thanks for your help!!!
There's only Three kinds of people in this world.....
Those that know how to count, and those that do not......
 ]
-
Aug 19th, 2004, 02:34 AM
#2
Fanatic Member
by shapes do you mean images? If so put a hyperlink on the image such as:
VB Code:
<a href="www.google.com" target="MainFrame">
Make the target the same as whatever you called your main frame and then it will work.
I'd also suggest you read up about html.
http://www.w3schools.com/html/default.asp
-
Aug 19th, 2004, 07:27 AM
#3
Frenzied Member
Example:
This is the code you'd have as your index.htm or whatever your index page is:
Code:
<frameset cols="115,*" frameborder=no>
<noframes><body>
<p>If you are seeing this message, your browser cannot handle frames, which are contained on this page and are used to enhance the page for viewing pleasure. Please download the latest version of your browser or download the latest version of Internet Explorer or Netscape Navigator. This page is best viewed by Internet Explorer 5.0+ with a resolution of at least 600 x 800 pixels. You can also go to our alternate site which does not contain frames. The address is xxxxxxxxxxxxx Thanks for visiting! </p>
</body></noframes>
<frame name="frindx" src="lnkfrm.php" noresize scrolling="no" >
<frame name="frhome" src="montnew.php" >
</frameset>
Then in your "navigation" page in the left frame:
Code:
<a href="montnew.php" base target="frhome">Home</a>
You just use a bunch of links like someone else mentioned.
-
Aug 24th, 2004, 09:28 AM
#4
Frenzied Member
Frames often is a bad idea... you should look into another form of doing things if it's about design(Divs...)...
"Lies, sanctions, and cruise missiles have never created a free and just society. Only everyday people can do that."
- Zack de la Rocha
Hear me roar.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|