FREQUENTLY ASKED QUESTIONS ~ Macromedia Dreamweaver®

[For the DW resource list, click here.]


Email | Links | Meta-tags | Tables | Tags | Window

Email

Q. How do I use a subject line in the email link (as well as cc: and bcc: etc.)?

Q. How do I refer a web page to another person via email? (Also, known as "tell a friend" and "email page" and "site recommendation" script.)

Q. How do I process the contents of a HTML form on my web page?

Links

Q. Which null link which should be used?

Q. How do I remove underlines from links?

Q. How do I create rollover effects with text links?

Q. How do I create more than one set of styles for links on a single page?

Meta-tags

Q. I have a frameset with some frames in it. I want to use meta-tag for search engines. Which frame Should I use? Where do I place the keywords?

Tables

Q. In Netscape 4.X, why does the background repeat inside every cell?

Q. I am trying to insert a table in my HTML document. Why is the Table selection under the menu item "Insert" greyed out?

Tags

Q. How do I remove all <font> tags?

Q. How do I remove all tags?

Window

Q. How do I open a new browser window from a text link?

Top


Subject line in email link:

Please see http://www.network23.com/hub/mailto/default.html.

Top


Tell-a-friend script:

For CGI, try Birdcast.cgi from http://www.bignosebird.com/carchive/birdcast.shtml.

Many more tell-a-friend CGI scripts at: http://cgi.resourceindex.com/Programs_and_Scripts/Perl/Website_Promotion/Recommend_Site/.

For ASP, try http://4guysfromrolla.Aspin.com/home/tutorial/email/tellafri?cob=4guysfromrolla.

Top


HMTL Form:

Please see http://people.unt.edu/~jhinuk/Form_FAQ.htm.

Top


Null link:

These may work, but may have problems in one or more situations:

#
javascript:void();

These work without any reported errors:

javascript://
javascript:void(0);
javascript:;

Top


Removing underlines from links:
Creating rollover effects with text links:
Create more than one set of styles for links on a single page:

Please see http://www.thepattysite.com/dreamweaver/linkstyles.html.

Top


Meta-tags for frame sets:

Please see http://www.searchenginewatch.com/webmasters/frames.html. Also, see http://spider-food.net/page-design-e.html.

Top


Repeating Background in Table Cells in Netscape 4.X

This is a known bug in Netscape 4.X. To set a background for the table use a "style" attribute for the table such as follows:

<table STYLE="background-image: url('bkgnd.jpg')">
   <tr>
     <td> . . .
     </td>
   </tr>
</table>

Alternatively, the background may be set in a stylesheet.

Top


"Insert Table" menu item is greyed out:

You are in the "Layout View" mode. You will need to switch to the "Standard View" mode. You can do this by clicking on thicon for the "Standard View" mode which can be found on the left hand side of the bottom line in the the Objects panel. (You can invoke the Objects panel with Ctrl + F2.)

Top


Removing the <font> tags:

In Dreamweaver, select the text and apply "Default Font" and Size "none" to it in Selection Properties. All <font> tags will disappear.

Top


Removing all tags:

Use the "Tag Stripper" extension at: http://www.massimocorner.com/. Look for it under the 'Commands' submenu in the 'Dreamweaver' section.

Top


Opening a new browser window from a text (or graphic) link:

1. Select the text or graphic (the trigger object) that will open the window.

2. In the Link field of the Property Inspector Box, enter a null link such as javascript://. Press RETURN.

2. With the trigger object still selected, open the Behavior Inspector panel (Shift + F3). Select the plus (+) sign, and choose Open Browser Window.

3. Add the URL of the document that will open in this popup window. Add window width, height and the window attributes (check as needed: scrollbar, toolbar, resize handle, etc.).

4. Give the window a name, and click OK.

[Also see null link.]

Top