Page 1 of 1

text page not show format

Posted: 25 Sep 2008, 23:05
by frank3427
I was creating a few text pages using the set folder as html.

I notice that the pages that are being displayed in preview are not holding the text layout, everything is running together.

Posted: 26 Sep 2008, 04:55
by mjau-mjau
Not quite sure what you mean, perhaps you have a link?

The content entered into textpages is HTML format. That means for example that it won't show line breaks simply by clicking enter. You need to use <br/> tags for that.

The following entry in the content ...
Code
Hello

World!
... will display in the gallery as ...
Code
Hello World!
... while the following entry ...
Code
Hello<br/>
<br/>
World!
... will display in the gallery as ...
Code
Hello

World!

Posted: 14 Nov 2008, 16:18
by carter2
I don't know if it's been mentioned before, I couldn't find it anyway.

When you type <br> it indents the next line.
ie:
Code
Hello <br> World
Will show up as
Code
Hello 
 world
It looks like it's adding a nbsp.

Posted: 21 Nov 2008, 06:52
by mjau-mjau
No, it's just adding your space after the <br/> at the beginning of the next line.
Code
Hello <br> World 
... will display as ...
Code
Hello
 World 
Code
Hello<br>World 
... will display as ...
Code
Hello
World