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
http://www.ineedwebhosting.co.uk
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
Todd1
(Todd)
April 26, 2013, 6:37pm
#5
-webkit-hyphens: auto;
-moz-hyphens: auto;
-ms-hyphens: auto;
-o-hyphens: auto;
hyphens: auto;
Todd
http://xiiro.com
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
Todd1
(Todd)
April 26, 2013, 6:46pm
#7
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
http://xiiro.com
Thank Todd. Do I put that Before the ?
freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
Todd1
(Todd)
April 26, 2013, 6:49pm
#8
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