• Resolved judithschafer

    (@judithschafer)


    Hi, I would like my site header to read as follows:
    J U D I T H S C H A F E R
    not
    JUDITH SCHAFER.
    However, WP does not recognise the extra spaces between the words, meaning it looks like this:
    J U D I T H S C H A F E R, which obviously makes no sense.
    Is there a solution to this?
    https://www.brushpoetry.com
    Thank you

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter judithschafer

    (@judithschafer)

    Wow, even as I posted my problem on the forum, it happened here too!
    what I am wanting is this:
    J U D I T H space space space S C H A F E R.
    Is it possible to put multiple spaces between words?

    WordPress just won’t cooperate with you today. ?? Here’s what you’ll want to do.

    Change the site title back to normal… just two words with a space in between them. No need to format it from there. We’ll use CSS for that.

    Now in your child theme or some other form of CSS editing protected from updates, you can use the following CSS to target the site title and control its “letter spacing” and “word spacing.”

    .site-title {
        word-spacing: 20px;
        letter-spacing: 10px;
    }

    That should get you off to a good start. Hope this helps!

    Thread Starter judithschafer

    (@judithschafer)

    Thank you so much! It worked first time!

    No problem!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Spaces between letters in site header’ is closed to new replies.