+ Reply to Thread
Results 1 to 7 of 7

Thread: Spacing

  1. #1
    Join Date
    Jul 2004
    Location
    Boise, Idaho
    Posts
    522

    Default Spacing

    This may be a dumb question, but how do you add more than one space between your words in a paragraph? Like after a period, dreamweever will not allow me to double space. What am I doing wrong?

  2. #2
    Join Date
    Sep 2004
    Location
    Czech Republic
    Posts
    159

    Default Re: Spacing

    Vlado Tovarnak

    "The more I want to get something done, the less I call it work."
    "In order to win, you must expect to win."

    by RICHARD BACH


    http://www.ValuesGuide.com is now producing and providing leads for real estate agents

  3. #3
    Join Date
    Oct 2004
    Location
    Florida
    Posts
    2,132

    Default Re: Spacing

    You can use " " this in your code to create a space.

  4. #4
    Join Date
    Jul 2004
    Location
    Boise, Idaho
    Posts
    522

    Default Re: Spacing

    Quote Originally Posted by kyle422
    You can use " " this in your code to create a space.
    Thanks Guys.......I'll try these out.

  5. #5
    Join Date
    Jul 2004
    Posts
    902

    Default Re: Spacing

    In Dreamweaver... you can be in the WYSISYG screen and just type like normal.. when you want to add more then one space you can just "Hold down the Ctrl+Shift and hit the space bar" - it's a little key shortcut to adding the code they mentioned.... (&nbsp
    Search Homes for Sale in SAN DIEGO and other San Diego Real Estate via the San Diego MLS.

  6. #6
    Join Date
    Sep 2004
    Location
    Czech Republic
    Posts
    159

    Default Re: Spacing

    Quote Originally Posted by SanDiego
    In Dreamweaver... you can be in the WYSISYG screen and just type like normal.. when you want to add more then one space you can just "Hold down the Ctrl+Shift and hit the space bar" - it's a little key shortcut to adding the code they mentioned.... (&nbsp
    I don't think this is a good solution. Because eg. "La Jolla Real Estate" code will look like:
    Code:
    <p>L&nbsp;a&nbsp;&nbsp;&nbsp;J&nbsp;o&nbsp;l&nbsp;l&nbsp;a&nbsp;&nbsp;R&nbsp;e&nbsp;a&nbsp;l&nbsp; &nbsp;&nbsp;E&nbsp;s&nbsp;t&nbsp;a&nbsp;t&nbsp;e</p>
    better is:

    Code:
    <style type="text/css">
    p.spaceBetweenLetters{
    letter-spacing:5px;
    }
    </style>
    <p class="spaceBetweenLetters">La Jolla Real Estate</p>
    Vlado Tovarnak

    "The more I want to get something done, the less I call it work."
    "In order to win, you must expect to win."

    by RICHARD BACH


    http://www.ValuesGuide.com is now producing and providing leads for real estate agents

  7. #7
    Join Date
    Jul 2004
    Posts
    902

    Default Re: Spacing

    He makes a very vaild point!
    I was figuring it would only be used for formating stuff... kinda like this:

    &nbsp;&nbsp; <ahref="urlhere">Text link</a> &nbsp;&nbsp;&nbsp; <a href="Anotherurl">ANOTHER link</a> &nbsp;&nbsp; Img src="photo"
    Search Homes for Sale in SAN DIEGO and other San Diego Real Estate via the San Diego MLS.

+ Reply to Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts