I found zip files in
/sdcard/Android/data/org.lds.ldssa/files/Download
so I copied 201395165.18-1.zip (which happened to be be handbook 2) to my computer and extracted it. I found an sqlite DB file a css file and a few js files. I found the ridiculous margins in style_classic-library.css.
Code: Select all
body {
padding: 70px 13.5%; }
@media screen and (max-width: 736px) {
body {
padding: 22px 7%; } }
@media screen and (max-width: 706px) {
body {
padding: 70px 10%; } }
@media screen and (max-width: 669px) {
body {
padding: 22px 7%; } }
@media screen and (max-width: 450px) {
body {
padding: 70px 10%; } }
@media screen and (max-width: 416px) {
body {
padding: 22px 35px; } }
So I changed all of that css to simply....
Code: Select all
body { padding: .5%; }
I extracted a chapter from the sqlite DB to an html file to verify the margin changes were working.
They were working, so I put the new css file into the zip file and put it back on my tablet. And .... nothing happened!
So my question is, does anyone know where to find the css files the app actually uses so I can edit them?
Chris W.
p.s.
I thought updates were supposed to make things better.