Hi there,
Let's go back to basics. CSS is there to help minimise code and make future changes easier.
This is why there are default settings for items such as font-family and font-size. On the page you validated it appears that every quote has it's own element style.
<p><span style="font-family: verdana, geneva; color: #0000ff;"><em><span style="font-size: 14pt;">Out of this world. </span></em></span></p>
When the actual code would be more effective as...
<p>Out of this world.</p>
If you really need to have the font-family, font-size and color as set then create a new css line such as...
p.bigblue {
font-family: verdana, geneva;
color: #0000ff;
font-size: 14pt;
}
And then change your article text to...
<p class="bigblue">Out of this world.</p>
Alternatively you could ensure that page suffix is enabled in the template advanced section and then go to the menu item and in the parameters set the page suffix to bigblue. This would let you change the CSS to...
.bigblue p {
font-family: verdana, geneva;
color: #0000ff;
font-size: 14pt;
}
With page content then set as simple <p></p> tags... e.g. <p>Out of this world.</p> - Every paragraph on the page with suffix bigblue would be rendered using that one piece of CSS.
Hope this helps