View Single Post
Old 02-08-2016, 11:07 AM   #5
gbm
Wizard
gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.
 
Posts: 2,191
Karma: 8888888
Join Date: Jun 2010
Device: Kobo Clara HD,Hisence Sero 7 Pro RIP, Nook STR, jetbook lite
Quote:
Originally Posted by senhal View Post
Why the E-book Viewer doesn't centrally align a picture (280x1000 px) when using this code?

Code:
<div class="center"><img alt="Frontispiece" height="100%" src="../Images/frontispiece.jpg" /></div>
Code:
.center {
  text-align: center;
  text-indent: 0;
}
Try this:
Code:
<div class="image block"><div class="center"><img alt="Frontispiece" height="100%" src="../Images/frontispiece.jpg" /></div></div>
Code:
.center {
  text-align: center;
  text-indent: 0;
    }
.image block {
    display: block
    }
bernie
gbm is offline   Reply With Quote