View Single Post
Old 02-05-2022, 03:53 PM   #5
chaley
Grand Sorcerer
chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.
 
Posts: 12,476
Karma: 8025702
Join Date: Jan 2010
Location: Notts, England
Device: Kobo Libra 2
Quote:
Originally Posted by Leonatus View Post
Hm, I have been quick with my eulogy. My recipe has those extra-css:
Code:
 extra_css = 'td.textb {font-size: medium;}'
    extra_css = '* { text-align: justify !important}'
    extra_css = '* { text-decoration: none !important}'
The font-size-extra-css is built-in; the two others I added. When I download the customized-recipe-based news source, the text-decoration-removal is added to the css rules, but not the "justify" rule; this remains at "left".
Thus, there appears no justified text in the news source.
Is there something missing?
Each of the extra_css is erasing the one that came before. I think you want
Code:
    extra_css = 'td.textb {font-size: medium;} * { text-align: justify important; text-decoration: none !important}'
chaley is offline   Reply With Quote