-
No frame borders
- No scrollbar
- No resize
- My links open in the same window (or new window)
- How do I update two frames at once?
- How do I add a solid color border around my frames?
- How do I make an inline frame's background transparent?
- How do I get my links to open in a new window?
- How can I vertically scroll two frames at once, using one scrollbar?
- Framed Layout Tutorial

No Frame Borders

Example:
<frameset cols=30%,70% border="0" frameborder="0" framespacing="0">

[top]

No Scrollbar

Example:
<frame src="right.html" name="right" scrolling=no>

[top]

No Resize

Example:
<frame src="right.html" name="right" noresize>

[top]

Links Open In The Same Window (or New Window)

You have to target your links.

Example:
<a href="http://your link" target="the frame name here">your link name</a>

[top]

How do I update two frames at once?

Visit 'Page Resource.com' or 'The JavaScript Source'.

[top]

How do I add a solid color border around my frames?

Example:
(You can change the stuff in bold.)

<frame src="right.html" name="right" style="border: 5 solid #000000">

[top]

How do I make an inline frame's background transparent?

I believe this method works only in Internet Explorer. See: Using IFRAME Elements

[top]

How do I get my links to open in a new window?

This opens in a new window.... <a href="your link" target="_blank">Your Link Name</a>

This opens in the same window..... <a href="your link" target="_self">Your Link Name</a>

This opens fully in the same window..... <a href="your link" target="_top">Your Link Name</a>

If you want to target all your links, use this (Place it above your links.)..... <Base Target="_blank">

[top]

How can I vertically scroll two frames at once, using one scrollbar?

Visit 'WebReference.Com'

[top]

Framed Layout Tutorial....

You can find a tutorial at 'Magitek Designs'.

[top]