Stephen has attended:
Project Intro Intermediate course
Dreamweaver 8 Introduction course
Dreamweaver 8 Intermediate course
Line/Text spacing
When hitting return key after typing text within a layer it jumps a line leaving a gap between two lines of text ?
What keys do I need to press if possible to stop this gap/spacing occurring.
Dreamweaver and HTML Line/Text spacing
Hi Stephen
When you are in design view in Dreamweaver and press the return key, this automatically assumes that you are starting a new paragraph and creates new paragraph tags in the html <p></p>.
To get around this, if you go into design and code view, you can click within the design view of Dreamweaver the text that has gone into the new paragraph and then within the code view you can remove the paragraph tags and place the text with the closing paragraph tag of the previous paragraph. The closing paragraph tag is </p>
Hope this helps
David
RE: Line/Text spacing
Stephen,
In Dreamweaver,
for a paragraph break <p></p> press Enter.
for a line break <br> hold Shift and press Enter.
Rich