Why is the space between the words inconsistent?

  • Unknown's avatar

    Hi,

    Why is it that the space between words are inconsistent?

    Have a nice weekend!
    All the best
    jEanette

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi Jeanette!

    The Manifest theme has the following two CSS rules in place that automatically justify your content:

    #core-content dd {
    	margin-bottom: 1.7em;
    	font-size: 14px;
    	line-height: 1.5em;
    	color: #333;
    	text-align: justify;
    }
    #core-content p{
    	text-align: justify;
    }

    When content is justified, extra spaces are added to fit the paragraph into a block. You can disable this by adding the following under Appearance -> Customize -> CSS:

    #core-content dd {
    	text-align: left;
    }
    #core-content p{
    	text-align: left;
    }
  • Unknown's avatar
    thebalanceinmind · Member ·

    Great thank you :)

  • The topic ‘Why is the space between the words inconsistent?’ is closed to new replies.