HighDots Forums  

How to double space?

Macromedia Dreamweaver Macromedia Dreamweaver Discussions (macromedia.dreamweaver)


Discuss How to double space? in the Macromedia Dreamweaver forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
XiLLiON14
 
Posts: n/a

Default How to double space? - 07-15-2004 , 12:14 PM






When I put links iI can only do a 1 space so I cant space ut my links?
Please Help

Reply With Quote
  #2  
Old   
Joe Makowiec
 
Posts: n/a

Default Re: How to double space? - 07-15-2004 , 12:29 PM






On Thu 15 Jul 2004 12:14:11p, XiLLiON14 wrote in macromedia.dreamweaver:

Quote:
When I put links iI can only do a 1 space so I cant space ut my links?
You mean you want something like:

Link 1 text [several spaces] Link 2 text [several spaces] Link 3 text ...

You can't do that using the space bar. HTML collapses all whitespace in
the source code (spaces, tabs, newlines) to a single space in the rendered
page. The simplest way may be to use a table, set the width to 100%, and
put the links in table cells:

<table width="100%>
<tr>
<td><a href="link1.html">Link 1 text</td>
<td><a href="link2.html">Link 2 text</td>
<td><a href="link3.html">Link 3 text</td>
</tr>
</table>


Reply With Quote
  #3  
Old   
darrel
 
Posts: n/a

Default Re: How to double space? - 07-15-2004 , 12:50 PM



Quote:
The simplest way may be to use a table, set the width to 100%, and
put the links in table cells:

table width="100%
tr
td><a href="link1.html">Link 1 text</td
td><a href="link2.html">Link 2 text</td
td><a href="link3.html">Link 3 text</td
/tr
/table
I'd suggest that a simpler way is via CSS:

a {
padding-right: 20px;
}

-Darrel




Reply With Quote
  #4  
Old   
basilb
 
Posts: n/a

Default Re: How to double space? - 07-15-2004 , 06:27 PM



You can use &nbsp in the code window to insert a space. For example the following string inserts 4 spaces "&nbsp;&nbsp;&nbsp;&nbsp;"

Reply With Quote
  #5  
Old   
basilb
 
Posts: n/a

Default Re: How to double space? - 07-15-2004 , 06:30 PM



Hmm that's interesting. I can't see the code typed in my reply above. Anyway the following link describes it.http://www.sightspecific.com/~mosh/WWW_FAQ/nbsp.html

Reply With Quote
  #6  
Old   
Murray *TMM*
 
Posts: n/a

Default Re: How to double space? - 07-15-2004 , 06:35 PM



You can't see it because you are using the stupid web interface to these
forums! 8)

--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver MX
(If you *MUST* email me, don't LAUGH when you do so!)
==================
news://forums.macromedia.com/macromedia.dreamweaver - THE BEST WAY TO GET
ANSWERS
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================

"basilb" <webforumsuser (AT) macromedia (DOT) com> wrote

Quote:
Hmm that's interesting. I can't see the code typed in my reply above.
Anyway the following link describes
it.http://www.sightspecific.com/~mosh/WWW_FAQ/nbsp.html




Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.