DekGenius.com
Previous Section Next Section

4.1 Frames and Framesets

Frames can be used to split the browser window into multiple regions; each region can display a different HTML page. Frames are often used to display a table of contents or navigation bar alongside the main page. Frames are created by using one or more <frame> tags within a <frameset> tag, but as usual, Dreamweaver's visual tools handle the underlying HTML for you. (Dreamweaver does not implement the <iframe> tag in any of its frame configurations. The <iframe> tag is not supported in IE browsers prior to IE4 and is not supported in NN browsers prior to NN6.)

The Objects panel's Frames category, shown in Figure 4-1, offers an easy way to create framesets (and shows thumbnails of each configuration). You can download additional frame configurations from the Dreamweaver Exchange.

Figure 4-1. The Objects panel's Frames category
figs/dwn_0401.gif

You can also insert frames by selecting Insert figs/U2192.gif Frames and choosing one of the frame configurations listed in Table 4-1 (which correspond to the icons shown in Figure 4-1, but with slightly different names).

Table 4-1 also lists commands from the Modify figs/U2192.gif Frameset menu (which split an existing frame or create a frameset if the document doesn't already contain one). No Macintosh keyboard shortcuts insert or split frames, but you can use the Alt+I, S and Alt+M, F shortcuts to access these menus under Windows. Furthermore, once a frameset is created, Dreamweaver automatically creates additional columns or rows of frames if you click and drag any edge of the frameset in the Document window.

Table 4-1. Preformatted frameset options

Menu option

Layout

Insert figs/U2192.gif Frames figs/U2192.gif Left

The frame is inserted on the left side. The main window remains on the right.

Insert figs/U2192.gif Frames figs/U2192.gif Right

The frame is inserted on the right side. The main window remains on the left.

Insert figs/U2192.gif Frames figs/U2192.gif Top

The frame is inserted at the top. The main window remains on the bottom.

Insert figs/U2192.gif Frames figs/U2192.gif Bottom

The frame is inserted on the bottom. The main window remains on top.

Insert figs/U2192.gif Frames figs/U2192.gif Left and Top

Three frames are inserted on the left, the top-left corner, and the top. The main window occupies the lower right.

Insert figs/U2192.gif Frames figs/U2192.gif Left Top

Inserts left and nested top frames. The main window occupies the lower right. Compare with Top Left.

Insert figs/U2192.gif Frames figs/U2192.gif Top Left

Inserts top and nested left frames. The main window occupies the lower right. Compare with Left Top.

Insert figs/U2192.gif Frames figs/U2192.gif Split

Three square frames are inserted (the window is split into quarters), leaving the main window in the lower-right quadrant.

Modify figs/U2192.gif Frameset figs/U2192.gif Split Frames Left

The current document is moved to the left frame. A new frame is inserted on the right.

Modify figs/U2192.gif Frameset figs/U2192.gif Split Frames Right

The current document is moved to the right frame. A new frame is inserted on the left.

Modify figs/U2192.gif Frameset figs/U2192.gif Split Frames Up

The current document is moved to the top frame. A new frame is inserted on the bottom.

Modify figs/U2192.gif Frameset figs/U2192.gif Split Frames Down

The current document is moved to the bottom frame. A new frame is inserted on the top.

The Left Top and Top Left frame configurations use nested framesets , in which a <frameset> tag is nested within another <frameset> tag to achieve the desired layout.

For example, DW's Left Top frameset option creates code like this:

<frameset rows="*" cols="80,*" frameborder="NO" border="0" framespacing="0"> 
  <frame name="leftFrame" scrolling="NO" noresize src="leftframe.html">
  <frameset rows="80,*" frameborder="NO" border="0" framespacing="0"> 
    <frame name="topFrame" noresize scrolling="NO" src="topframe.html">
    <frame name="mainFrame" src="mainframe.html">
  </frameset>
</frameset>

Some older browsers, such as IE3 and NN4, do not support nested framesets well and may show the top-level frames only. You can create frames in two different documents rather than using a nested frameset in a single document. For example, you could add a Left frame to a document; then click inside the right-hand frame and add a Top frame inside it. This step would simulate a Left Top frameset in a way that supports older browsers.

The HTML that defines a frameset is saved in an .html file. Use File figs/U2192.gif Save Frame, File figs/U2192.gif Save Frame As, and File figs/U2192.gif Save All Frames to save your frameset file and the documents that occupy the frames within it. (When saving multiple files in a frameset, Dreamweaver displays a cross-hatched border around the frame or frameset being saved.)

4.1.1 Frameset Properties

Just as a table contains cells, a frameset contains one or more frames that are arranged in rows and/or columns on the page. You can view and select frames within a frameset by using the Frames panel (Window figs/U2192.gif Frames or Shift+F2) shown in Figure 4-2.

Figure 4-2. The Frames panel
figs/dwn_0402.gif

Properties can be set for both the frameset and the frames within it. You should set the frameset's properties first because some affect the frame properties. Frameset properties are set in the Property inspector (see Figure 4-3) when the frameset is selected.

Figure 4-3. The Property inspector showing frameset properties
figs/dwn_0403.gif

You can select a frameset in one of three ways:

  • By selecting a frame in the Frames panel and then clicking the <frameset> tag in the Tag Selector.

  • By clicking on the outside border surrounding the frames in the Frames panel.

  • By clicking on the edge of the document or the border between any two frames in the Document window (when the cursor changes to a two-headed arrow). Use View figs/U2192.gif Visual Aids figs/U2192.gif Frame Borders to make the frame borders visible.

The frameset properties are explained in Table 4-2. Note that within the frameset Property inspector you can also set the height and width of frames within the frameset. (You can also change the height and width of frames by dragging the borders between frames in the Document window). Frame dimensions can be set as a fixed width in pixels or as a percentage of the browser window or parent frame (in the case of a nested frameset). Set the column width or row height Units to Relative to cause that column or row to autostretch to fill the necessary area when the user resizes the browser window.

Table 4-2. Frameset properties

Property

HTML attributes of <frameset>

Description

Borders

frameborder="yes" | "no"

Use no to hide borders between frames (and set Border Width to 0). The Border Width should be nonzero if Borders is set to yes.

Border Width

border="length" and framespacing="length"

Determines the margin around the frameset and between adjoining frames. Set it to 0 when Borders is set to no.

Border Color

bordercolor="RGBvalue" | "colorname"

Sets the border color (Border Width should be nonzero).

Column Width

cols="col1width,..., colnWidth"

Defines the number and width of frames in a row of the frameset.

Row Height

rows="row1height,..., rownHeight"

Defines the number and height of frames in a column of the frameset.

Row/Column Selector

See Column Width and Row Height entries

Selects a row or column of frames for setting height or width.

When you insert a frame, Dreamweaver adds the cols or rows attribute (or both) to the <frameset> tag it creates. For example, if you add a Top frame, Dreamweaver adds rows="80,*" to the <frameset> tag, which implies that there is one column containing two frames (rows) within the frameset. The top frame is 80 pixels high (the height could also be set as a percentage, such as 20%); the bottom frame's height, as indicated by the asterisk (*) expands to fill the remainder of the browser window.

4.1.2 Frame Properties

As with most elements, frames have their own sets of properties. You should set each frame's name and the URL of the document to be displayed within it (Dreamweaver assigns a default frame name such as leftFrame, topFrame, or mainFrame when using the predefined frame configurations). These and other properties of each frame can be set in the Property inspector (see Figure 4-4) when a frame is selected. Frame properties are explained in Table 4-3.

Note that the height and width of frames within a frameset can be set in the Property inspector when the frameset, not an individual frame, is selected. (Frame height and width are set at the frameset level because all frames in a row or column must have the same height or width.) The frame's Border and Border Color properties default to the settings for the frameset.

Figure 4-4. The Property inspector showing frame properties
figs/dwn_0404.gif

Table 4-3. Frame properties

Property

HTML attributes of <frame>

Description

Frame Name

name="string"

The name used by scripts and for link targets.

Src

src="url"

The URL of the initial document to load.

Scroll

scrolling="auto" | "yes" | "no"

Controls the presence of scroll bars for the frame.

No Resize

noresize

See the explanation following this table.

Borders

frameborder="yes" | "no"

Shows or hides the borders between frames.

Border Color

bordercolor="RGBvalue" | "colorname"

Controls the frame border color. Uses the frameset setting if blank.

Margin Height

marginheight="length"

Determines vertical spacing from the adjacent frame.

Margin Width

marginwidth="length"

Determines horizontal spacing from the adjacent frame.

The No Resize property prevents a user from dragging the edge of a frame to resize it, but the frame may still resize when the browser window is resized. Use fixed pixel dimensions to prevent frames from resizing when the browser window is resized.

4.1.3 Targeting Frames

When using frames, a hyperlink can target either an individual frame or the entire document window. For example, if a frame contains a navigation bar, you'll want the navigation bar's hyperlinks to affect the contents of another frame, not the frame containing the navigation bar.

After creating a link, you can set the link's target using the Modify figs/U2192.gif Link Target menu or the Target pop-up menu in the Property inspector. The names of any frames in your document will appear in the Target menu. Setting the link target causes the new document to replace the contents of the specified frame. If no target is specified, the default is _self, (i.e., the current frame or window is replaced).

The Target menu contains four default choices (in addition to the names of any frames in your document). The default targets are:

_blank

Opens a new browser window for the document.

_self

The new document replaces the document into the current frame or window (this is the default).

_top

Loads the new document into the browser window, eliminating any existing frames. This target is useful when linking from your framed site to someone else's unframed site. (The _top option is the same as _self if no frames are on the current page.)

_parent

Loads the new document into the current frameset. If you use nested framesets, only the current frameset is affected. This option doesn't work well in NN4, which has flawed support for nested framesets. (If the page is not using nested framesets, the _parent option is the same as _top.)

4.1.4 Nested Frames

Although the number of frames that can be displayed within a single frameset is unlimited, there are some restrictions on how they can be arranged. You can nest frameset tags inside of other frames to create complex configurations without actually nesting framesets.

Complicated framesets complicate surfing. Avoid using more than three frames in any document.

We saw how to simulate a Left Top frameset using nested frames in Section 4.1 earlier in this chapter. Here's another example of how to nest framesets:

  1. Create your first level of frames using one of the methods described earlier.

  2. Select one of the frames to contain the nested frameset.

  3. Add a new frameset inside the selected frame using:

    1. Modify figs/U2192.gif Frameset figs/U2192.gif Split Frames (and then choosing Up, Down, Left, or Right); or

    2. Insert figs/U2192.gif Frames (and choosing Left, Right, Top, or Bottom); or

    3. The Left, Right, Top, or Bottom icons in the Objects panel's Frames category.

Nesting framesets in this manner ensures that <frameset> tags are nested within <frame> tags, as shown here, and not directly within other <frameset> tags:

<frameset> 
  <frame>
  <frameset> 
    <frame>
    <frame>
  </frameset>
  <frame>
</frameset>

Note that nested framesets inherit the border settings of the parent frameset.

4.1.5 NoFrames Content

Whenever you add frames to a document, Dreamweaver automatically adds the <noframes> tag to your HTML. The <noframes> tag uses a <body> tag to display unframed data to users whose browsers don't support frames.

According to the W3C standard, the <noframes> tag should be placed before the closing </frameset> tag, but Dreamweaver places it after the closing </frameset> tag.

The default code inserted with the <noframes> tag is:

<noframes>
  <body bgcolor="#FFFFFF" text="#000000">
  </body>
</noframes>

You can modify the <noframes> content directly using Modify figs/U2192.gif Frameset figs/U2192.gif Edit No Frames Content. When editing the <noframes> content, the words "NoFrames Content" are shown at the top of the Document window's Design pane. Select Modify figs/U2192.gif Frameset figs/U2192.gif Edit No Frames Content again to untoggle this option and return to editing your framed web page.

    Previous Section Next Section