PDA

View Full Version : Formatting dreamweaver.


Sol
2003-02-26, 04:07 PM
How can I format the dreamweaver text so it isnt double spaced?

BLuE_ZeRO
2003-02-26, 04:59 PM
You just can't hit enter when you're spacing out your text. If you format a table that's small you can just run the text to the end and it will just go to the next line without spacing it. When you hit the paragraph key it inserts the <p> tag so it adds that extra space.

powdahound
2003-02-26, 05:05 PM
The head of your document would need a CSS style tag like this:

<hr>
&lt;head&gt;
&lt;title&gt;Test Document&lt;/title&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"&gt;
&lt;style type="text/css"&gt;
BODY {
font-family: verdana, arial, helvetica, san-serif;
font-size:10pt;
line-height:12pt;
font-style:normal;
font-weight:normal;
<b>line-height: 2;</b>
color: #000000;
}
&lt;/style&gt;
&lt;/head&gt;
<hr>

<b>line-height</b> is what will make the text double spaced.

powdahound
2003-02-26, 05:07 PM
I am an idiot... I thought he said so it IS double spaced... grrr. Here's what you want then:

If you don't want a big space between lines use a Shift+Enter instead of just Enter. That will insert a linebreak instead of a paragraph break.

BLuE_ZeRO
2003-02-26, 05:15 PM
pfft sure if you want to do it the easy way you can do that... :rolleyes:

Sol
2003-02-27, 08:37 PM
lol Zero. Thanks guys. :)