Actually, there is a much easier way to sort the alignment.
In the CSS, delete all occurrences of text-align: left and text-align: justify. Next, put the justify you want in the body CSS style and if one doesn't exist, add one.
body {
text-align: justify;
}
or
body {
text-align: left;
}
That will make it how you want. And if you change your mind, it's very easy to just change the alignment in CSS.
|