diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/lttr/templates/lttr/subscribe.html | 4 | ||||
-rw-r--r-- | app/posts/templates/posts/jrnl_list.html | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/app/lttr/templates/lttr/subscribe.html b/app/lttr/templates/lttr/subscribe.html index e73ca73..8ddb03b 100644 --- a/app/lttr/templates/lttr/subscribe.html +++ b/app/lttr/templates/lttr/subscribe.html @@ -8,8 +8,8 @@ href="/media/screenv10.css" media="screen"> </head> -<body> - <form action="" method="post" target='_parent' class="generic-form flex newsletter-subscribe">{% csrf_token %} +<body style="margin-left:0"> + <form action="" method="post" target='_parent' class="generic-form flex newsletter-subscribe" style="margin: 1.25rem 0 1rem;">{% csrf_token %} {% for field in form %} <fieldset> {{field.label_tag}} diff --git a/app/posts/templates/posts/jrnl_list.html b/app/posts/templates/posts/jrnl_list.html index 8e3c4df..93d64ad 100644 --- a/app/posts/templates/posts/jrnl_list.html +++ b/app/posts/templates/posts/jrnl_list.html @@ -47,8 +47,7 @@ <script> function resizeIframe(obj) { - console.log((obj.contentWindow.document.body.scrollHeight - 50) + 'px'); - obj.style.height = (obj.contentWindow.document.body.scrollHeight - 50) + 'px'; + obj.style.height = (obj.contentWindow.document.body.scrollHeight - 75) + 'px'; } </script> {% endblock %} |