|
b-addfrmt.htm
Getting the text of your document positioned on the web
page in the way you want may require some additional formatting. This
document gives instructions for the following formatting techniques:
Adjusting
Paragraph Alignment
Dreamweaver offers four alignment options for
paragraphs: left, right, center, and justify. Choosing a paragraph
alignment will align selected paragraphs to the left, right, or center of
the page. The justify alignment justifies both the left and right borders
of a paragraph.
Adjusting Paragraph Alignment: Menu Option
-
Place your cursor in the paragraph you want formatted
-
From the Text menu, select Align
» appropriate selection (Left, Center, Right, or
Justify)
Adjusting Paragraph Alignment: Properties Pane
-
Place your cursor in the paragraph you are formatting
-
In the Properties pane, click the
appropriate alignment button

Applying
Paragraph Indents (Blockquotes)
Dreamweaver provides a standard paragraph indent
approximately equal to one half inch. This indent is also called a
blockquote.
-
Place your cursor in the paragraph you are formatting
-
On the Properties pane, click TEXT
INDENT

-
To further indent the paragraph, repeat step 2
NOTE:
To reduce or eliminate a paragraph
indent, click TEXT OUTDENT
Inserting
Line Breaks
If you want to begin a new line, but not a new
paragraph, you can insert a line break. Inserting a line break will move
the cursor from the line on which you are working to the very next line on
the page without leaving a blank line between the two.
Inserting Line Breaks: Keyboard Option
-
Place the cursor where you would like to insert the
line break
-
Press [Shift] + [Enter]
Inserting Line Breaks: Menu Option
-
Place the cursor where you would like to insert the
line break
-
From the Insert menu, select
Special Characters » Line Break
Applying
Special Characters
With Dreamweaver, you can insert special characters that
are supported by HTML code. Examples include the copyright symbol ©,
registered symbol ®, and characters unique to other languages (e.g., the ñ
used in many Spanish words).
-
From the Insert menu, select
Special Characters » appropriate
selection
-
If the desired option is not listed
-
Select Other...
The Insert Other Character dialog box appears.
-
Select the desired character
-
Click OK
Depending on settings, a warning may appear.
-
Click OK
Making
Characters Subscript/Superscript
Dreamweaver allows you to make text either subscript or
superscript. One method is by going into the code and
inserting the appropriate HTML tags to make the text subscript or
superscript. A less intimidating method, if you are unfamiliar with HTML
code, is to use the design view to insert the
appropriate HTML tags without having to work directly in the code.
Making Characters Subscript/Superscript: Code View
-
From the Document toolbar, click
SHOW CODE AND DESIGN VIEWS

The Code view appears above the Design view.
-
In the Design view, select the text you want
made subscript or superscript
That text is selected in the Code view.
NOTE: This allows you to
easily find the text in the code that you want to format.
-
In the Code view, type <sub>
for subscript or <sup> for superscript
before the selected text
NOTE: When you create and
opening tag, e.g., <sub>, Dreamweaver automatically creates the closing
tag for it, e.g., </sub>
-
In the Code view, select and move
</sub> (subscript) or </sup>
(superscript) after the
desired text
-
In the Code view Properties pane,
click REFRESH

In the Design view the text becomes either subscript of
superscript.
Making Characters Subscript/Superscript: Design View
HINT:
This method is recommended if you are unfamiliar with working with HTML
code.
-
Select the text you want to make subscript or
superscript
-
From the Insert menu, select
Tag...
The Tag Chooser dialog box appears.
-
Select HTML Tags
-
From the list of tags on the right, select
sub for subscript or sup
for superscript
-
Click INSERT
The Tag Editor dialog box appears.
-
Click OK
-
In the Tag Chooser dialog box, click
CLOSE
The text is now subscript or superscript.
|