Hi,
In the CSS Class field I enter: p.large
That is wrong just put large
<p class="p.large">some junk text</p>
that is wrong for p.large {} in your CSS it should be:
<p class="large">some junk text</p>
p.large means all paragraphs that have the class large
Hope that helps,
Joe