Shape 5

Joomla Templates => City Portal - January - Club => : gardjones October 19, 2009, 09:23:28 PM



: Missing space in body text of articles
: gardjones October 19, 2009, 09:23:28 PM
When articles are displayed, the normal spacing between paragraphs disappears, making it look very unprofessional. For example,
:
<p>some text for one paragraph</p>
, followed by
:
<p>some text for another paragraph</p>
will have a line break at the end of the first paragraph, but NO space between it and the second. Where can this be remedied?


: Re: Missing space in body text of articles
: jonahh October 20, 2009, 12:29:27 AM
Hello,

You'd have to open up your template_css.css file and look for:

p {
padding:0;
}

and change it to:

p {
margin-bottom:10px;
}