Wordpress Paragraph Issue

3 replies
Hi Warriors,

I'm face with a problem with paragraph in my blog, Inspiration Junction

I can't separate my posting into paragraphs. It used to be ok, until I change my theme into
esther theme.

Anyone faced this issue before?
I tried html code<p></p> but it doesn't help.
#issue #paragraph #wordpress
  • Profile picture of the author TheNightOwl
    Sometimes the visual editor borks. That's why I never use it.

    I just switch it off and enter directly into the sourcecode field. Spaces between paragraphs automatically get rendered as if you'd wrapped it in paragraph tags.

    Then you can add whatever styling directly very easily.

    I can't remember exactly where to turn it off. I think you click on your Username and uncheck the box that says "Use WYSIWYG editor"... or something like that.

    Hope that helps.
    Signature
    {{ DiscussionBoard.errors[2694503].message }}
  • Profile picture of the author danemorgan
    Your old theme added padding or margins to the bootoms of paragraphs in the css. Your new theme does not.

    open your style.css file and find
    HTML Code:
    .post {
    	margin: 0 0 40px;
    	text-align: justify;
    }
    beneath that add
    HTML Code:
    .post p {
      padding-bottom: 1em;
    }
    I believe this will give you what you are looking for.
    Signature
    Did you ever notice that “author” is the root of the word “authority“?
    {{ DiscussionBoard.errors[2694518].message }}
  • Profile picture of the author skyjoe76
    Hi Nightowl & danemorgan,

    Thanks for taking the effort to help.
    The issue is resolve by editing the style.CSS file.
    Signature
    Interview With Three Multi-Millionaires Click here

    Client uses this planning tool to create additional income Click here
    {{ DiscussionBoard.errors[2694543].message }}

Trending Topics