Topic: PageMaker Heading (Page 1 of 1)  | 
  |
|---|---|
| 
       Paranoid (IV) Inmate From: Royal Horsing Ground  | 
    
       
  posted 11-20-2006 14:50
      
      I am trying to create a layout in PageMaker and am having a confusing issue... I would like the headings to be aligned with the following paragraphs as shown in the image below:  | 
  
| 
       Bipolar (III) Inmate From: Mpls, MN  | 
    
       
  posted 11-20-2006 18:58
      
      I would create a text box for each object like so.  | 
  
| 
       Paranoid (IV) Inmate From: Florida  | 
    
       
  posted 11-20-2006 19:10
      
      code: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
	<head>
		<title></title>
		<style type="text/css">
div {
	width: 278px;
	height: 368px;	
	font: 0.6em/14px sans-serif;
	color: black;
	text-align: justify;
	border: 1px solid gray;
	border-top: 0;
	padding-top: 1px;
	background: white;
}
h2:first-child {
	margin-top: 48px;
}
h2 {
	font: normal 1.05em sans-serif;
	border-top: 2px solid black;
	margin: 22px 11px 0 17px;
	padding: 5px 0 0;
}
p {
	margin: -10px 20px 10px 107px;
}
		</style>
	</head>
	<body>
		<div>
			<h2>Heading</h2>
			<p>some text some text some text some text</p>
			<p>some text some text some text some text</p>
			<p>some textsome textsome text</p>
			<p>some textsome textsome text</p>
			<p>some textsome textsome text</p>
			<p>some textsome textsome text</p>
			<p>some textsome textsome text</p>
			<h2>Heading 2</h2>
			<p>some text some text some text some text</p>
			<p>some text some text some text some text</p>
			<p>some textsome textsome text</p>
			<p>some textsome textsome text</p>
			<p>some textsome textsome text</p>
			<p>some textsome textsome text</p>
			<p>some textsome textsome text</p>
		</div>
	</body>
</html> | 
  
| 
       Paranoid (IV) Inmate From: Royal Horsing Ground  | 
    
       
  posted 11-21-2006 10:40
      
      Thanks jstuartj, it is probably the best way to go about it.  | 
  
| 
       Neurotic (0) Inmate Newly admitted From:   | 
    
       
  posted 09-21-2011 10:55
      
      Thank you so much for your post.  |