| FORMATTING YOUR TEXT A common question we here is "How come my paragraphs are all squished together?". The system will not recognize your carriage returns (Return/Enter keystrokes) so basic HTML will be needed to correctly format your text when trying to add more than one paragraph per Text Box in the Manager's Console.That is why we have put together this page so you will be able to display your text in an organized fashion. Seperating Paragraphs A common question we here is "How come my paragraphs are all squished together?". The Easy Way Between your paragraphs simply include two break tags. What's a break tag? It's HTML code which simulates your Return/Enter keystroke. How do I use a break tag? It's easy -- a Less than symbol, the letters B and R, and a Greater Than symbol. It looks like this: <BR> Another Easy Way At the beginning of your paragraph simply use a paragraph tag. What's a paragraph tag? It's HTML code that will automatically seperate your text into paragraphs where you specify the tag. How do I use a paragraph tag? It's easy -- a Less Than symbol, the letter P, and a Greater Than symbol. It looks like this: <P> You should also close the tag at the end of your paragraph. It looks like this: </P> Want justified text? Simply add align="justify" to the paragraph tag. The entire tag look like this: <P align="justify"> You should also close the tag at the end of your paragraph. It looks like this: </P>
|