Hi
Can you send me snapshot for the issue.
Thank’s
Hello Hari,
It seems in rambo-pro the issue has been solved. However, in the free version here on ww.wp.xz.cn the text is just justified to a block and causes dividing words like:
1 line: long text, c
2 line: ontact
I would prefer when the word does not fit on one line, so that the whole word would jump to another line, like:
1 line: long text,
2 line: contact
Any idea?
Hi Socho
For blog and single post text-align justify to add given css in theme option custom css box.
.blog_section2 p, .blog_single_post p { text-align:justify; }
If you want to text-align justify in other pages.
Find a specific element id and class using inspect element option in a browser and Add text-align justify; css.
Thanks
Hello Hari,
Thank you for the response.
My problem was solved by updating style.css
.blog_single_post
original:
word-break: break-all;
word-wrap: break-word;
changed to:
word-break: keep-all;
word-wrap: normal;
Socho, good catch, remedied my situation.