Quote:
	
	
		
			
				
					Originally Posted by  Amalthia
					 
				 
				I would really appreciate a fresh pair of eyes that could hopefully point out what I'm doing wrong. 
			
		 | 
	
	
 Oh, I misunderstood what you were trying to do.  Change your CSS selector from ".toc" to ".toc p".  That makes it mean "all <p/> elements inside of an element with a class attribute of 'toc'."
So with CSS of:
	Code:
	.toc p {
display: block;
text-indent: 0in;
page-break-after: always
}
 You will hopefully have what you're looking for.