View Single Post
Old 08-15-2013, 01:18 PM   #14
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: 46,652
Karma: 169712392
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Quote:
Originally Posted by GeoffR View Post
I took a look at that book. Interesting use of non-existent styles.

Code:
<p class="cap noindent"><span class="dcap"><span class="dropcap">T</span>HE QUIET VOICE</span>&nbsp;
The cap and dcap styles don't exist in any of the 6 stylesheets in the ebook.

so removing the non-existent, I got:

Code:
<p class="noindent"><span class="dropcap">T</span>HE QUIET VOICE&nbsp;
The dropcap style is:

Code:
span.dropcap {
  font-size: 300%; 
  font-weight: bold; 
  float: left; 
  margin: -0.1em 0.125em -0.2em 0em; 
  text-indent: 0em; 
  line-height: 1em; 
  height: 1em;}
which look quite similar to the one I use as dropcap2.

Regards,
David
DNSB is online now   Reply With Quote