Computing.Net > Forums > Programming > HTML-- how do you make frames invisible?

Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.

HTML-- how do you make frames invisible?

Reply to Message Icon

Name: Dan
Date: January 4, 2002 at 10:29:51 Pacific
Comment:

How do you make the border of a frame invisible? Could you just give me the code...I'm not an expert at html!



Sponsored Link
Ads by Google

Response Number 1
Name: #define Kris W_G_P
Date: January 4, 2002 at 10:50:07 Pacific
Reply:

In the [Frame src=....... ] flag, add the property FrameBorder and set the value to 0. So....

[Frame Src="Page.html" FrameBorder=0]

if you also want to hide the scroll bar (for whatever reason.. eg: you display the page depending on the resolution of the user) you can use ' Scrolling="no" ' in the Frame flag.

[Frame Src="Page.html" frameborder=0 scrolling="no"]

... and if you want to not allow the user to resize the frame, add the keyword 'noresize' to the end of the flag.

[Frame Src="Page.html" FrameBorder=0 noresize]

just thought id tell you the last two since web designers usually use the three together, although it is not necessary. (of course youll need to use the triangle brackets instead of [] ... they just wouldnt show up in this forum)

Email me if you need more help.

-- Worlds Greatest Computer Programmer


0

Response Number 2
Name: Dan
Date: January 4, 2002 at 10:59:09 Pacific
Reply:

wow thanks!


0

Response Number 3
Name: Dan
Date: January 4, 2002 at 11:13:34 Pacific
Reply:
0

Response Number 4
Name: Delta_Tango
Date: January 4, 2002 at 11:14:14 Pacific
Reply:

a href="http://www.counter-strike.net/"
img src="http://www.counter-strike.net/images/link/cstrike_ban.gif" alt="Visit Counter-Strike.net!" border="0"
/a


^^^the ocde


0

Response Number 5
Name: #define Kris W_G_P
Date: January 4, 2002 at 11:30:43 Pacific
Reply:

First, have you named your frames?

[Frame Src="Side_Bar.html" Name="SideBar"]

You should name all of your frames... THEN set the target to the name of the frame you want to open the web page in. SO....

[Frame Src="Side_Bar.html" Name="SideBar" Target="MainWindow"]

... this will open up any page you link to in the frame SideBar in the frame you named MainWindow.
If you want to open it in a new browser window, set the target to something such as '_new' (or anything else that doesnt refer to the name of a frame)

[Frame Src="Side_Bar.html" Name="SideBar" Target="_new"]

Then all links will open in a new window.

I'm more than happy to help... and if you happen to use MSN Messenger add me to your list...

worldsgreatestprogrammer@hotmail.com

-- Worlds Greatest Computer Programmer


0

Related Posts

See More



Sponsored Link
Ads by Google
Reply to Message Icon

How should I learn C? i need some help ?



Post Locked

This post is quite old and has been locked from receiving new replies. Please create a new posting instead.


Go to Programming Forum Home


Sponsored links

Ads by Google


Results for: HTML-- how do you make frames invisible?

How Do I make a login Box? www.computing.net/answers/programming/how-do-i-make-a-login-box/14714.html

how do i make a game iso ? www.computing.net/answers/programming/how-do-i-make-a-game-iso-/3112.html

How do you skip lines in msgbox VB www.computing.net/answers/programming/how-do-you-skip-lines-in-msgbox-vb/3864.html