More space BELOW paragraphs in a post


Author Message
ram

Posted: 6/3/2009
Quote message 

hi,

can you please tell me which part of the css file i should edit to get
more space in between paragraphs in a post. Specifically more space at bottom of the paragraph.

{like the spaces above and below this line}

Thanks
 
Garry

Posted: 6/3/2009
Quote message 

Find out following styling rule in your style.css:

.PostContent {style.css (line 1163)
color:#393E37;
font-family:Arial,Helvetica,Sans-Serif;
font-size:12px;
font-style:normal;
font-weight:normal;
text-align:justify;
}

and add:

margin-top:50px;
margin-bottom:50px;

You can change 50px to your desired space
 
Dan E.

Posted: 6/3/2009
Quote message 

Its actually better to use the shorthand, it saves on memory

so I would do this instead:

margin: 50px 0 50px 0;

(adjust as needed)
 
ram

Posted: 6/4/2009
Quote message 

:-) thank you GARRY & DAN

i used the following code to get space between paragraphs
==============================================

.PostContent p
{
margin-top: 0;
padding-top: 0;
margin-bottom:1.5em;
}

============================================

final result


paragraph 1
space
paragraph 2
space
paragraph 3
==============================================

if i use ".PostContent" withou "p" infront of it

and add
margin-top:50px;
margin-bottom:50px;


final result was

space
paragraph 1
paragraph 2
paragraph 3
space



 
Bob

Posted: 6/4/2009
Quote message 

In Artisteer if you go to the Articles tab, in the Text Formatting block, choose Fonts and at the bottom is Font Options. In there are two tabs. Under the tab for paragraph it lets you adjust spacing on tat stuff.
 
ram

Posted: 6/4/2009
Quote message 

thanks bob

it does show the options

{Article>>>>text formatting>>>>line height>>>>>more options}

i never went that deep into the menus

i will test and post back the results