View Single Post
Old 12-29-2013, 06:52 PM   #4
Geoff_C8
Member
Geoff_C8 began at the beginning.
 
Posts: 13
Karma: 10
Join Date: Dec 2013
Location: Sydney, Australia
Device: Kindle
Quote:
Originally Posted by Alt68er View Post

Please be so kind and post the link.

Thanks a lot,
Peter
Hi Peter,

As already indicated, a margin top or margin bottom setting is required. This is the code I used, to create two classes that can be used:

Code:
 .spacetop {
		margin-top: 3em;
		text-indent: 0
   }

  .spacebot {
		margin-bottom: 3em;
		text-indent: 0
   }
Obviously I could also have modified an existing specific element, but that did not suit me in this case. This code is applied simply by using

Code:
<p class="spacetop"> 

or <h4 class="spacebot"> and so on
Geoff

Last edited by Geoff_C8; 12-29-2013 at 06:55 PM.
Geoff_C8 is offline   Reply With Quote