Recent Topics

1 Jan 30, 2006 17:22    

When entering text in the Backoffice I do enter paragraphs via the Enter/Return key, but after it is saved it does not show paragraphs on the live web.

Why?

How do I get posts to have paragraphs?

I hope each paragaph does not have to have the <p></p> at the beginning and end of each paragraph.

And it does not appear that the <br/> switch works either.

http://ldspatriot.com/blog/index.php?blog=1

2 Jan 30, 2006 18:09

The <p> tags are getting inserted just fine, but your CSS is set to not put space above or below paragraphs:

p, .storyContent {
	font:11px/20px verdana, arial, helvetica, sans-serif;
	margin:0px 15px 0px 20px;
	padding:0px;
	}


Change the padding or the top or bottom margin and you'll have space between paragraphs.

3 Jan 30, 2006 21:53

personman wrote:

The <p> tags are getting inserted just fine, but your CSS is set to not put space above or below paragraphs:

p, .storyContent {
	font:11px/20px verdana, arial, helvetica, sans-serif;
	margin:0px 15px 0px 20px;
	padding:0px;
	}


Change the padding or the top or bottom margin and you'll have space between paragraphs.

Will do...which file...how to do this...novice...just started last night...

4 Jan 30, 2006 22:03

Ok, open this file:

http://ldspatriot.com/blog/skins/originalb2/layout2b.css

and change this part:

p, .storyContent {
   font:11px/20px verdana, arial, helvetica, sans-serif;
   margin:0px 15px 0px 20px;
   padding:0px;
   }


to this:

p, .storyContent {
   font:11px/20px verdana, arial, helvetica, sans-serif;
   margin:0px 15px 15px 20px;
   padding:0px;
   }

5 Jan 30, 2006 22:28

Fantastic! It worked...ThankYouVeryMuch!

Do I still have to insert the <p></p> commands or can I just use the enter key or return key? I'm hoping for an easier way to update the blog without having to manually enter the <p></p> commands all the time.

6 Jan 30, 2006 22:48

I've never had to manually add p tags. If it doesn't look right, then make sure you put a check next to "Auto p" when you're posting.


Form is loading...