Problem with Word Spacing HTML

Discussion in 'HTML & Website Design' started by melbel, Jul 5, 2008.

  1. #1
    On my site http://www.an-american-in-france.com/
    I have a problem in the word spacing under the area "Did you Know?" at the top right. What is causing that weird spacing? Anyone know what the fix is?
     
    melbel, Jul 5, 2008 IP
  2. Rubenator

    Rubenator Peon

    Messages:
    40
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Your text is justify so is forcing spacing between words:

    .left-title p, .right-title p {
    text-align: justify;
    font-size: 12px;
    }

    maybe you can try left alignment

    .left-title p, .right-title p {
    text-align: left;
    font-size: 12px;
    }
     
    Rubenator, Jul 5, 2008 IP
    melbel likes this.
  3. melbel

    melbel Notable Member

    Messages:
    2,373
    Likes Received:
    241
    Best Answers:
    0
    Trophy Points:
    230
    #3
    Thank you very much! That was the problem exactly! I should have posted this question earlier. Who knew I would get a correct response so quickly!

    +Rep
     
    melbel, Jul 5, 2008 IP
  4. Rubenator

    Rubenator Peon

    Messages:
    40
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Thanks. Glad to help :)
     
    Rubenator, Jul 5, 2008 IP