[Pro] Justified Text?

I seem to have a lot of issues with using the justified text, rag left option in the text styles panel. Sometimes that looks great. Other times it leaves big gaps between words. Is there some other setting I need to apply for this option to work better?


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

That’s one of the reasons I hardly ever use it. I believe there’s some JavaScript libraries to help get better justified text.

David Owen

On 26 Apr 2013, at 19:14, “RavenManiac” email@hidden wrote:

I seem to have a lot of issues with using the justified text, rag left option in the text styles panel. Sometimes that looks great. Other times it leaves big gaps between words. Is there some other setting I need to apply for this option to work better?


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

I wonder if there’s some CSS code I can add to the Extended section of the Text Style? Where’s Delta Dave?


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Adjusting the hyphenation can sometimes improve text rag. There is a CSS3
property for this, and I think Walter even made an action for it.


Ernie Simpson


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

    	-webkit-hyphens: auto;
    	-moz-hyphens: auto;
    	-ms-hyphens: auto;
    	-o-hyphens: auto;
    	hyphens: auto;

Todd

Adjusting the hyphenation can sometimes improve text rag. There is a CSS3
property for this, and I think Walter even made an action for it.


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Thank Todd. Do I put that Before the ?


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Assign it to the

tag (or create the p tag if it doesn’t already exist) in your stylesheet. It will then be applied to anything wrapped in a paragraph tag. If done correctly it will look like this in the 'sheet:

	p {
    	-webkit-hyphens: auto;
    	-moz-hyphens: auto;
    	-ms-hyphens: auto;
    	-o-hyphens: auto;
    	hyphens: auto;
    	margin-bottom: 14px;
    }

Or use Walter’s action.

Todd

Thank Todd. Do I put that Before the ?


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Oops, you can drop the margin-bottom property, that’s not required.

Todd
http://xiiro.com


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

I took the simple route and used Walter’s action. Worked great!

http://actionsforge.com/actions/view/279-css3-hyphenate


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options