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 » dreamweaver course uk - Line spacing
dreamweaver course uk - Line spacing
Resolved · Low Priority · Version Standard
Sara has attended:
Dreamweaver 8 Introduction course
Line spacing
When I write text in teh editable section of a document and in a table how do I change teh line spacing?
RE: Line spacing
Sara,
Hopefully your editiable region has not begun inside a <p> or <div> type tag. If it has, then you won't be able to change the settings of an editable region easily.
Usually editable regions are not inserted between such tags (you can check your code to be sure, and Dreamweaver also warns you if you do).
As for line spacing, there is a CSS style for this, and so you will need to know a bit about CSS.
http://www.w3schools.com/css/pr_dim_line-height.asp
The parameter is line-height. So your code will look like this (can use div instead of p if you like):
<p style="line-height: 1.4">Your text here</p>
The other way is to use CSS classes.
Link a CSS file to your document containing this class definition:
.doublespacingsara {line-height: 2;}
Then in HTML use this:
<p class="doublespacingsare">Your text here</p>
I hope this helps.
If you are unsure, please read up a bit on CSS, and if still unsure reply here and I will assist you further :)
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:Toggle panels on and offPress the F4 key to toggle all the panels in Dreamweaver on or off. This gives you more editing and programming screen space. |