Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
chaddesign #1
Problems with spacing bestween text
Whenever i hit the spacebar twice to put two spaces between words i only get
one space? Is there a setting i need to change? Also...evertime i start a new
line for a sentence or whatever i get about a 2 inch gap between the lines.
Does this make sense? If not...this is an example:
it should look like this:
test test test
test test test
but this is what happens:
test test test
test test test
test test test
chaddesign Guest
-
Datalist Layout spacing problems, row space
Just in case this is driving anyone else besides me nuts.... I set up a datalist with Layout=Table. This caused a blank space to appear between... -
Text Spacing cleanup?
Does anyone know of an easy way to clean up sloppy text for DW? I pull text from Outlook, PDF's, and Docs all the time, and these seems to be no... -
line spacing problems in Flash MX 2004?
When I open a Flash MX or earlier file in Flash MX 2004 Professional, I have noticed that the line spacing on alot of my text has been expanded... -
text spacing
Hi there, Firstly, let me apologize if the following question is one that has already been covered recently. I went through trying to find any... -
Line spacing for text
Do a shift-return rather than just return. 6, double -
Murray *TMM* #2
Re: Problems with spacing bestween text
> Whenever i hit the spacebar twice to put two spaces between words i only
HTML only puts one space between words no matter how many times you hit the> get
> one space?
spacebar.
Only if you could persuade the crafters of HTML to add that capability! 8)> Is there a setting i need to change?
You can subvert this, however, by alternating a space with a non-breaking
space in your code, i.e., space - shift-ctrl-space - space -
shift-ctrl-space.
This is a very poor technique, however.
HTML bites you again. What you are seeing is the inherent margins on the> Also...evertime i start a new
> line for a sentence or whatever i get about a 2 inch gap between the
> lines.
<p> tag. You can manage those by using CSS to control the top and bottom
margin on those tags, e.g.,
put this in the head of your page (right above </head>) -
<style type="text/css">
<!--
p { margin-top:0; margin-bottom:0; } /* adjust these values to suit */
-->
</style>
and see what happens.
--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
[url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
[url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
[url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
[url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
==================
"chaddesign" <webforumsuser@macromedia.com> wrote in message
news:dic8r1$79v$1@forums.macromedia.com...> Whenever i hit the spacebar twice to put two spaces between words i only
> get
> one space? Is there a setting i need to change? Also...evertime i start
> a new
> line for a sentence or whatever i get about a 2 inch gap between the
> lines.
> Does this make sense? If not...this is an example:
>
> it should look like this:
>
> test test test
> test test test
>
> but this is what happens:
>
> test test test
>
>
> test test test
>
>
> test test test
>
>
>
Murray *TMM* Guest



Reply With Quote

