Can you justify text with this program?
I am creating a website with the free Try out Site Designer but I can't find an option to justify text. Can you not do that with this program?
Thanks.
Thanks.
With VSD (Visual Site Designer) your options are Left, Right and Centered - no Full or Forced Justify.
When you choose the text tool and start typing, look at the object properties (same box where you can choose your font and text color and you'll see the other options (bold, italic, font size, bulleted list and justify r,l, or c).
For full justified text, you'd need to create it somewhere else (either using an iframe or a div to hold it) and then insert it with the html tool into the VSD page.
When you choose the text tool and start typing, look at the object properties (same box where you can choose your font and text color and you'll see the other options (bold, italic, font size, bulleted list and justify r,l, or c).
For full justified text, you'd need to create it somewhere else (either using an iframe or a div to hold it) and then insert it with the html tool into the VSD page.
I love deadlines. I like the whooshing sound they make as they fly by. (Douglas Adams)
https://www.callendales.com
https://www.callendales.com
Thank you. Can you please explain more on how to do it somewhere else option? Could it be Word? How do you use the "iframe" or "div" that you mention? And then, how do you insert them? Do you insert them as an image?
Info, never ever use Word for anything that goes into an html file. Word has it's own code which is likely to mess up anything else.
The 'somewhere else' option involves a certain knowledge of html coding, and your best bet is the HTML Editor. You write or paste the text you want and click on 'justify' on the tool bar. When you are done, you open VSD and with the 'html tool' you create a rectangle on your page and paste in the text with the justify div surrounding it. It could look like something like this:
<div align="justify" style="width: 800px;">Your text goes here</div>
Of course you can set the width to suit your own preferences.
The 'somewhere else' option involves a certain knowledge of html coding, and your best bet is the HTML Editor. You write or paste the text you want and click on 'justify' on the tool bar. When you are done, you open VSD and with the 'html tool' you create a rectangle on your page and paste in the text with the justify div surrounding it. It could look like something like this:
<div align="justify" style="width: 800px;">Your text goes here</div>
Of course you can set the width to suit your own preferences.
Ha en riktig god dag!
Inger, Norway
My work in progress:
Components for Site Designer and the HTML Editor: https://mock-up.coffeecup.com
Inger, Norway
My work in progress:
Components for Site Designer and the HTML Editor: https://mock-up.coffeecup.com
And one more thing: Html doesn't know what a line break is, so it needs some code for it. But what you can do if it's a chunk of text with several paragraphs, change the above code to:
<div align="justify" style="width: 800px;"><pre>Your text goes here</pre></div>
The <pre></pre> part of it means preformatting.
<div align="justify" style="width: 800px;"><pre>Your text goes here</pre></div>
The <pre></pre> part of it means preformatting.
Ha en riktig god dag!
Inger, Norway
My work in progress:
Components for Site Designer and the HTML Editor: https://mock-up.coffeecup.com
Inger, Norway
My work in progress:
Components for Site Designer and the HTML Editor: https://mock-up.coffeecup.com
Oh fer pete's sake, why doesn't Coffeecup just add justification to the features? 

Melissa Rhiannon
OS Windows 10
OS Windows 10
what Melissa Rhiannon said
Melissa Rhiannon wrote:
Oh fer pete's sake, why doesn't Coffeecup just add justification to the features?
Oh fer pete's sake, why doesn't Coffeecup just add justification to the features?

We could do that, but then it means delaying RSD by a few months. So if that is ok, we can certainly do that.

Learn the essentials with these quick tips for Responsive Site Designer, Responsive Email Designer, Foundation Framer, and the new Bootstrap Builder. You'll be making awesome, code-free responsive websites and newsletters like a boss.
The <div> align attribute is not supported in HTML5. Use CSS instead.
http://www.w3schools.com/tags/att_div_align.asp
Keith
http://www.w3schools.com/tags/att_div_align.asp
Keith
Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.