View Single Post
Old 02-10-2011, 02:16 PM   #2
DMSmillie
Enquiring Mind
DMSmillie understands when you whisper 'The dog barks at midnight.'DMSmillie understands when you whisper 'The dog barks at midnight.'DMSmillie understands when you whisper 'The dog barks at midnight.'DMSmillie understands when you whisper 'The dog barks at midnight.'DMSmillie understands when you whisper 'The dog barks at midnight.'DMSmillie understands when you whisper 'The dog barks at midnight.'DMSmillie understands when you whisper 'The dog barks at midnight.'DMSmillie understands when you whisper 'The dog barks at midnight.'DMSmillie understands when you whisper 'The dog barks at midnight.'DMSmillie understands when you whisper 'The dog barks at midnight.'DMSmillie understands when you whisper 'The dog barks at midnight.'
 
DMSmillie's Avatar
 
Posts: 562
Karma: 42350
Join Date: Aug 2010
Location: London, UK
Device: Kindle 3 (WiFi)
Do you mean you use "px" values for the "width" and "height" attributes in the HTML "img" tag? E.g.:

Code:
<img src="my_picture.jpg" alt="my picture" height="200px" width="100px" />
If that's what you're using, it's not an EPUB issue - it's an HTML validity issue. The "height" and "width" attributes in an "img" tag should have simple numerical values - either the number of pixels, or a percentage value. So instead of:

Code:
height="200px"
you should just have:

Code:
height="200"
DMSmillie is offline   Reply With Quote