• Is there a way to add extra spaces between words in a line with WordPress ?

    Every time I add a few extra spaces, WordPress deletes them. Even using html code   does not work.

    Surely there is a remedy. THX

Viewing 5 replies - 1 through 5 (of 5 total)
  • If you are making a post use html mode
    Enclose the text you want spaced out within a class tag.

    <p class=”space”>hello there out there.</p>

    Your css: p.space {word-spacing:20px; }

    Thread Starter dixiewins

    (@dixiewins)

    Thx solarwind for your reply. What I need to be able to do is put about 6 spaces between 2 website links that are on 1 line. Suggestions ?

    Should work as above:

    <p class=”space”>weblink1 weblink2</p>

    Add the class”space” to the beginning of your first link,
    add the css code to your style sheet and adjust word spacing until you are happy

    Thread Starter dixiewins

    (@dixiewins)

    gave it a try, solarwind, no luck. Perhaps WordPress has a glitch in this area. really appreciate your efforts to help.

    Hi Dixie, sorry it’s not working for you, this might help
    Live demo for you:
    here

    Have a look at the source code, add the following to your css file

    p.space {word-spacing:50px; }

    good luck.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Add spaces in WordPress’ is closed to new replies.