Indentation - Left Justification Problem

The new Drupal install creates paragraphs that are indented (making it ugly).

Note: 2nd,3rd..and other paras are all okay - only first para is indented. One way is to set the page to display 'submitted by' and 'date'. The indent problem will go away.

A better solution (to make all left justified) is just change padding to 0 as below in style.css

.node .taxonomy {
color: #999;
font-size: 0.83em;
/* padding: 1.5em; ************************ */
padding: 0em;
}

It is the default taxonomy feature giving this 'frist-para indented' problem.
See thread Indent Thread