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?
-Disease To separate your paragraphs you use
! You can't do indentations though. For example:
Paragraph 2
Paragraph 3Paragraph 1
-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>
In loving memory of Need posting achievements?Then join Posting Frenzy Achievement Items - searchable list List of Borders and cutouts New at Fresh and Flavorful Ping Group
I had no idea that you could do indentations so this is massively helpful for me too. Thank you!
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 :).
In loving memory of Need posting achievements?Then join Posting Frenzy Achievement Items - searchable list List of Borders and cutouts New at Fresh and Flavorful Ping Group