FrontPage Frames

Jared 4

New Member
Joined
Sep 7, 2005
Messages
35
Hi,

I apologize in advance for my beginner status...

I've made a web site that uses frames on the top and left sides of the page. I want the frames to remain there when someone clicks on a link to an external site. I also would like to put a button that allows people to remove the frames. Can anyone help me do this?


Thanks a bunch!!!!!!
Jared
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
That's easy. Just remember that the a href (link) tag has a target attribute which means you can point a link to another window, an internal one, or to just one frame. It's how you get all those annoying popups (besides Javascript and adware).

To keep frames, add this to your link

Code:
<a href="http://www.externalwebsite.com" target="Nameofaframe">

Whatever frame (of the 4 or so you have), point it to that one. As for removing frames, change target to "_top". I would like to offer 2 caveats however.

1)To really be able to make a great website, you have to get used to seeing and typing code manually to be more effective. Using Frontpage templates can only get you so far.

2) Frames are no longer the vogue website tool they once were. Many users, browsers, professionals, and search engines have lots of trouble with them and dislike them. If you're using frames, make sure you have a separate standalone page with links that search engines can index. Check Google and Yahoo for more information on this.
 
Upvote 0

Forum statistics

Threads
1,224,862
Messages
6,181,464
Members
453,044
Latest member
rgbenson1

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top