As long as the <p> tags don't have a over-riding class assigned to them you can just do this in the css:
h2 + p {
text-indent:0;
}
p {
text-indent:whatever;
}
If there is an over-riding class I believe the above should still work as long as you remove any indent settings from that class.
|