| Rank: Newbie Groups: Member
 
 Joined: 5/9/2014
 Posts: 1
 
 | 
		    Hello.
 The company I am working with wants to buy EO.Pdf but we need one specific functionality.
 Is there a way to stop images from breaking into the next page? So if an image is to large, to start on the next page, therefore the image won't be split in two parts, one on one page and the other on the next page.
 
 Thank you in advance.
 | 
	| Rank: Administration Groups: Administration
 
 Joined: 5/27/2007
 Posts: 24,425
 
 | 
		    Hi, Yes. You can simply add this to your HTML:
 
    
        Code: CSS
         img { page-break-inside: avoid; } See here for more information about controlling page break:http://www.essentialobjects.com/doc/4/htmltopdf/paging.aspx Thanks!
		 |