98.7% Of all customers recommend us, we're so confident about our results we publish all reviews and stats
View Live Stats View ReviewsForum home » Delegate support and help forum » Dreamweaver Training and help » in dreamweaver training - Font
in dreamweaver training - Font
Resolved · Low Priority · Version Standard
RE: Font
1. Select the text to modify
2. In the Text Properties pane, from the Font pull-down list, select a font combination.
OR
1. From the Text menu, select Font
Changing the font colour in Dreamweaver using CSS
Hi Jackie,
I hope you enjoyed your Dreamweaver Introduction course yesterday.
There are a few ways to change the font colour. You can simply select the text in design view, then on the properties panel use the colour selector to change the text.
Originally, this used to add code around the text like this:
<font color="#FFFFFF">Your text</font>
But the font tag has now been depreciated.
You might notice that in Dreamweaver 8, they create a new CSS style with the colour you have chosen, and apply the new style to your selection. Like this:
css
.jackie1 {
color: #FFFFFF;
}
html
<p class="jackie1">Your paragraph</p>
Don't forget it's always American spelling (color not colour).
Regards, Rich
Training information:
Welcome. Please choose your application (eg. Excel) and then post your question. Our Microsoft Qualified trainers will then respond within 24 hours (working days). Frequently Asked Questions
Any suggestions, questions or comments? Please post in the Improve the forum thread. |
Dreamweaver tip:Creating line breaksIf you want to create a line break hold down Shift+Enter. |