This browser does not support basic Web standards, preventing the display of our site's intended design. May we suggest that you upgrade your browser?
Certain parts of your document may require special characters. This document will detail the steps necessary to adding special characters to your page by utilizing keyboard commands, menu options, and the Properties pane.
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., ñ).
From the Insert menu, select HTML » Special Characters » select the desired character
Click OK
From the Insert menu, select HTML » Special Characters » Other...
The Insert Other Character dialog box appears.
Select the desired character
Click OK
Depending on your settings, a warning might appear.
Click OK
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. If you are unfamiliar with HTML code, a less intimidating method to use is the design view to insert the appropriate HTML tags without having to work directly in the code.
| Code View | Design View |
|---|---|
| This is regular text. <sub>This is in Subscript.</sub> | This is regular text. This is in Subscript. |
| This is regular text. <sup>This is in Superscript.</sup> | This is regular text. This is in Superscript. |
HINT: This method is recommended if you are unfamiliar with HTML code.
Place your insertion point where you would like the subscript or superscript to appear
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.
Under the General section, in the Content box, type what you would like to become superscript or subscript
Click OK
In the Tag Chooser dialog box, click CLOSE
In Properties pane, click REFRESH ![]()
From the Document toolbar, click SPLIT ![]()
The Code view appears above the Design view.
In the Design view, select the text you want 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, at the beginning of the selected text, type <sub> for subscript or <sup> for superscript
In the Code view, after the desired text, type </sub> (subscript) or </sup> (superscript)
NOTE: When there is an open tag (e.g., <sub>) and you type </ after your desired text, Dreamweaver will complete the tag (e.g., </sub>) automatically.
In the Properties pane, click REFRESH ![]()
The Design view will reflect the changes you have made.