aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--templates/blog/partials/base.html7
1 files changed, 6 insertions, 1 deletions
diff --git a/templates/blog/partials/base.html b/templates/blog/partials/base.html
index be190670..7438607c 100644
--- a/templates/blog/partials/base.html
+++ b/templates/blog/partials/base.html
@@ -68,7 +68,12 @@
<center>
<table style="table-layout: fixed; width: 1000px;">
<td width="250px" style="vertical-align:top;">{% include 'blog/partials/sidebar.html' %}</td>
- <td width="750px" style="vertical-align:top;"><div class="content">{% block content %} {% endblock %}</div></td>
+ <td width="750px" style="vertical-align:top;"><div class="content" style="
+ width: 1000px;
+ margin: 0 auto;
+ box-sizing: border-box;
+ padding: 10px 0px 20px 0px;
+">{% block content %} {% endblock %}</div></td>
</table>
</center>
</div>