• I came across a website that has it’s articles perfectly formatted so that each line ends at the same point. Similar to a newspaper that adds extra spaces so that all of the words line up perfectly at the end of the margin.

    Here is the website that is a perfect example:
    https://tomakemoneyonline.net/domains/invest-in-a-4-letter-domain-name/

    Notice each line ends at the end of the margin by using extra spaces. What plugin is this? I would love to have it on my website.

    Thanks alot!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter SgrWd

    (@adamf24)

    Hm.. I can’t seem to find any plugin that relates to what I’m describing, in his plugin directory. Perhaps he’s formatting it manually? Seems like a stretch though.

    Thread Starter SgrWd

    (@adamf24)

    The worst part is he doesn’t have any contact information on his site at all. So I can’t even email him and ask how he does it.

    No plugin required, the text is justified using CSS. If you want the same effect, you’ll need this in your style.css:

    .post {
    	text-align: justify;
    	}

    And if you want comments justified too, you’ll need this:

    .commentlist {
    	text-align: justify;
    	}

    You may need to fiddle with margin and padding values to make things work with your own layout, but that’s a start.

    Thread Starter SgrWd

    (@adamf24)

    Ah okay, Thanks! I appreciate it.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘What plugin is this?’ is closed to new replies.