Quote:
Originally Posted by Sirtel
And just now I'm editing a book that has double chapter headings. Yes, the exact same heading twice, first larger and then smaller. Makes one really wonder about people who design those books...
|
I've found that happening when media-queries are used to select the size of the image. RMSDK will display both while the WebKit renderer will display only one. Sample code would be:
Code:
<div class="element element-bodymatter element-container-single element-type-chapter element-with-heading" role="doc-chapter" epub:type="chapter">
<div class="heading heading-container-single heading-size-full heading-format-full heading-alignment-flexible heading-without-image">
<div class="heading-contents">
<div class="title-subtitle-block title-block-title-is-element-number">
<img src="../images/00003.jpeg" alt="" class="chapter_heading_image high-res" data-AmznRemoved="mobi7"/>
<img height="75" " class="chapter_heading_image low-res" src="../images/00004.jpeg" width="172" data-AmznRemoved-M8="true"/>
</div>
</div>
</div>
</div>