| TC2112 2004-08-22, 4:15 am |
| Hello,
The doublespacing is caused by the default margin of the <p> tag. You can use
CSS to change the margin for the <p> tag, thus changing the spacing.
The following code will set the margin for all <p> tags on the page. (To 5px
in this example. Change the number a few times to see how it looks.) Just
insert this right before the </head> tag in code view.
<style type="text/css">
<!--
p {margin:5px;}
-->
</style>
You can read a lot about this in this forum if you go to Search and type
double spacing as the search phrase.
There is a lot of information in this forum, and a lot of great, very
knowledgable, extremely helpful folks here. In addition to the Dreamweaver
tutorials and other things in the help menu, just reading through the questions
and answers here can teach you a lot about Dreamweaver.
Hope this helps, and best of luck
Take care. :-)
|