• Hi I am trying to find the html coding to allow me to indent a paragraph after a descriptive heading sentence on my wordpress site. I have posted a pdf that has the correct formating style I’m am looking for on a page at my website. Here is the address to the page on my website.

    https://mayoperformance.com/?page_id=422

    Thanks for any help, it is greatly appreciated.
    David

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter drounds1967

    (@drounds1967)

    Note the page link is at the top of the page above the gallery.

    Instead of text-indent, which only works on the first line of a given paragraph, use a margin inline on the p tag for the needed paragraphs as follows:

    <p style="margin-left: 170px; margin-top: -23px;">Your paragraph copy.</p>

    The margin-left does just that. It creates a set margin to the left of the paragraph within the content box. The negative margin-top aligns it with the word to the left.

    Thread Starter drounds1967

    (@drounds1967)

    Thanks for the help it worked like a charm. I will add that code to my code for next time I need it.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Help with html formating to indent paragraph after a short sentence’ is closed to new replies.