Quote:
Originally Posted by ptsefton
Secondly, would you consider an option to turn it off? I'm happy to have a go at making it happen if it is feasible.
|
I second this request for an option to turn it off. The KDXG already has navigation buttons on the status bar, so I don't need those created by calibre.
Anyway, there's a workaround:
Quote:
Originally Posted by ptsefton
Finally - would it be possible to override that code in a recipe?
|
The navbar created by calibre itself is different from the one created by ebook-convert. ebook-convert encloses it in a <div> tag with a class named "calibre_navbar", while calibre calls it "touchscreen_navbar". A workaround to delete it in a recipe is to use the extra_css option like this:
Code:
extra_css = '.touchscreen_navbar {display: none;}'
I hope this helps