We have been using Confluence 5.1. It may seem so trivial but, is there a way to justify a text in Confluence 5.1?
I'm looking how to full-justify (not left, center of right align)
Community moderators have prevented the ability to post new answers.
In edit mode, look just to the left of the Link tool. Left, center, and right <s>justify</s> align.
Bob, thanks for your answer. However I'm trying to find a way to full justify text. I've edited my question accordingly, please see the attached image there.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Use the align macro from Content Formatting Plugin - http://www.adaptavist.com/display/AtlassianConfluence/align+macro
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just add HTML macro and in html macro add something like this
<table>
<tr>
<td valign="top">
<p style="text-align: justify;">Your text goes here</p>
</td>
</tr>
</table>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Wouldn't you just use something like:
<div align="center">
This is some text!
</div>
or CSS syntax:
<div style="text-align:center">
This is some text!
</div>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
To have some correctly formatted text you can always use latex if you have that macro
...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Community moderators have prevented the ability to post new answers.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.