Quote:
	
	
		
			
				
					Originally Posted by  Alt68er
					 
				 
				 
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