Thanks Joe and Jamie for your quick replies.
Joe - Since I don't have access to an iPhone to test with I set my desktop skin to the mobile skin and used Firebug to see what CSS rules were affecting my paragraphs. Below is the results from Firebug:
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
background: none repeat scroll 0 0 transparent;
border: 0 none;
font-size: 100%;
margin: 0;
outline: 0 none;
padding: 0;
vertical-align: baseline;
}
As you can see margin and padding are both set to 0. As Jamie suggested I need to add some margins into my skin.
Jamie - Thanks for the input. Not sure why you put Body before your paragraph tag as it works fine if you input:
p, ul, ol { line-height:1.4em; margin: 25px 0px;}
Since I used Visual Studio 2010 to test my CSS I had copied my paragraph rule from there. This caused failure on the Mojo site because it was not in the correct syntax.