Replies

Jul 25, 2014 11 years ago
NeonDinosaur
is dancing till the world ends
User Avatar
Joshua

I wrote a story for my pet Phone Sex but when I go to her profile all the text is just one big block with no spaces, paragraph indents, etc. I there a special code I have to do in order for it to do that?

Jul 25, 2014 11 years ago
Spotlight Champion
helix
User Avatar
Guillotine

-Disease To separate your paragraphs you use

! You can't do indentations though. For example:

Paragraph 1

Paragraph 2

Paragraph 3

Jul 25, 2014 11 years ago
Lypsyl
is a billionaire
User Avatar
Crotchety

-Disease Yes. <p> some text </p> (for a paragraph break) some text <br> (for a line break)

For indents, bullets or other fancy things you need to use CSS. You can look up the code on Google (or any search engine), just type in something like "CSS indents" or whatever you're looking for.

Then in your description box you would have something like <style type='text/css'> In here would be whatever CSS codes you chose to use. For paragraph, styling it would look like:

p {some codes here}

</style>

<p>Some random text in here being your first paragraph. </p> <p>Some random text in here being your second paragraph and so forth </p>

Jul 25, 2014 11 years ago
Spotlight Champion
helix
User Avatar
Guillotine

I had no idea that you could do indentations so this is massively helpful for me too. Thank you!

Jul 25, 2014 11 years ago
Lypsyl
is a billionaire
User Avatar
Crotchety

There's all sorts of fun stuff you can do. Some of it is very simple, indent is a CSS command, so that's easy. You can do other stuff, like drop caps which are more complicated. I don't know much about CSS, but I just look stuff up in Google and go from there :).

Please log in to reply to this topic.