Organize content

My site is get thin. My content is ok from the left but on the right side the words are not in in line. I want to make it look like as it is [URL=“http://getthin-fast.com”]here.

The two links you have given are both the same. I’m not clear what it is that you’re trying to achieve.

Oh! I’m extremely sorry. The other link is here.

OK - that’s called “justified” text - it’s common in books, but much less so on the web.

You can do that by using text-align: justify in your CSS. e.g.

p {text-align: justify;}

Thanks mate!
Where in CSS?

Assuming you only want this to affect the paragraphs, then you can add it to the existing p styling (in the text elements section):


p {margin-bottom: 15px;
   text-align: justify;
   }

Great dude. Thanks a lot.