• Hi all –

    I know this has been covered, but the solutions that I could find in other posts did not work for me! I was able to get one space, but the HTML code is now a mess because the traditional tricks weren’t working so I kind of hacked it. Here is what the code looks like:

     
    <h1 style=”text-align: center;”>Header 1 Text</h1>
     
    <h5 style=”text-align: center;”>Sub-Header Text</h5>
     
    <h1 style=”text-align: center;”></h1>
     
    <h1 style=”text-align: center;”>Header 2 Text</h1>

    I’m looking to get an extra space in between “sub header text” and “Header 2 Text”

    You’ll see things look a little cramped on my site: earnsmartdeals.com/blog

    Thanks for any help!

Viewing 5 replies - 1 through 5 (of 5 total)
  • anonymized-13749270

    (@anonymized-13749270)

    You could try an empty paragraph <p></p> or better <p>&nbsp;</p> or some CSS tweak..

    <h5 style="text-align: center;">Sub-Header Text</h5>
    
    <p>&nbsp;</p>
    
    <h1 style="text-align: center;">Header 2 Text</h1>
    Thread Starter jvansiclen2

    (@jvansiclen2)

    Unfortunately that doesn’t work, it actually removes the single space I was able to get with my fix

    Istead of this: <h1 style=”text-align: center;”></h1>
    put some “div” and set height value. That should work.

    BTW, so simply break line tag doesn’t work ?

    Thread Starter jvansiclen2

    (@jvansiclen2)

    Sorry for the delayed response – that’s correct. The break line tag unfortunately is not working

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Adding Two Extra Spaces Between Paragraphs’ is closed to new replies.