View Single Post
Old 08-21-2024, 07:53 PM   #28
DNSB
Bibliophagist
DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.
 
DNSB's Avatar
 
Posts: 47,402
Karma: 171313058
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Quote:
Originally Posted by Sirtel View Post
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>
DNSB is offline   Reply With Quote