aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-02-20 19:28:58 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-02-20 19:28:58 +0100
commite0ecf344881b482cb89d7bacdfa45ffd79c44315 (patch)
tree4215fb335916499bc6ffc41ce4e0ac08b57b122f
parentImproved readability. (diff)
downloadnewspipe-e0ecf344881b482cb89d7bacdfa45ffd79c44315.tar.gz
newspipe-e0ecf344881b482cb89d7bacdfa45ffd79c44315.tar.bz2
newspipe-e0ecf344881b482cb89d7bacdfa45ffd79c44315.zip
Reduced width for article pages (webzine export).
-rw-r--r--source/export.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/export.py b/source/export.py
index b53b21bf..339d00b4 100644
--- a/source/export.py
+++ b/source/export.py
@@ -112,7 +112,7 @@ def export_html(mongo_db):
(article["article_id"], article["article_title"][:150]) + "<br />\n"
a_post = HTML_HEADER(article["article_title"])
- a_post += '<div style="overflow:hidden; text-align: justify; margin:0 auto">\n'
+ a_post += '<div style="width:60%; overflow:hidden; text-align:justify; margin:0 auto">\n'
a_post += """<h1><a href="%s">%s</a></h1>\n<br />""" % \
(article["article_link"], article["article_title"])
a_post += article["article_content"]
bgstack15