Left-align code in Wordpress

The default theme in Wordpress uses “text-align: justify” for everything in a post, which can stretch code and shell commands to cover an entire line. I didn’t want that, so I used the Theme Editor to comment out/remove that line.

.post {
margin: 0 0 40px;
text-align: justify;
}

Now, things look okay!

Leave a Reply