Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>First of all, be warned: inline CSS is a terrible idea. Read on.</p> <p>Short answer: You need to adjust your paragraph's <code>margin</code> property using CSS. Add this between your <code>&lt;header&gt;</code> tags:</p> <pre><code>&lt;style type="text/css"&gt; p { margin: 5px 0; } &lt;/style&gt; </code></pre> <p>Change the <code>5px</code> to the desired margin height. Note this <em>will change</em> the margin on all paragraphs in your document. In order to avoid this, you need to assign the parent element of the paragraphs an id and reference it:</p> <pre><code>&lt;div id="sidebar"&gt; &lt;p&gt;Social&lt;/p&gt; // etc... &lt;/div&gt; </code></pre> <p>Then modify your CSS:</p> <pre><code>&lt;style type="text/css"&gt; #sidebar p { margin: 5px 0; } &lt;/style&gt; </code></pre> <h2>Long Rant:</h2> <p>In reality, this is not the approach you should take. Defining inline or in document style makes maintenance and changes a nightmare, and you lose consistency.</p> <p><a href="http://www.google.com/search?gcx=c&amp;sourceid=chrome&amp;ie=UTF-8&amp;q=defininf%20a%20global%20style%20sheet#hl=en&amp;safe=off&amp;sa=X&amp;ei=DPCdTsXKOuStsALRneXyCQ&amp;ved=0CBoQvwUoAQ&amp;q=defining%20a%20global%20style%20sheet&amp;spell=1&amp;bav=on.2,or.r_gc.r_pw.,cf.osb&amp;fp=e9abb71f8ca0386c&amp;biw=1920&amp;bih=1019" rel="nofollow">Using external stylesheets</a> makes it easier and quicker to edit and maintain your sites style and design. You also remain consistent.</p> <p>That's a lot of content to get into here, you can Google this subject in your own time. But you should look into linking an external stylesheet and defining your styles there.</p> <p>Take a look at the <a href="http://twitter.github.com/bootstrap/index.html#forms" rel="nofollow">Bootsrap framework.</a></p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload