diff --git a/r2/r2/public/static/css/reddit.less b/r2/r2/public/static/css/reddit.less
index a4842797f..63ba71ea4 100644
--- a/r2/r2/public/static/css/reddit.less
+++ b/r2/r2/public/static/css/reddit.less
@@ -7153,6 +7153,7 @@ dd { margin-left: 20px; }
font-size: smaller;
text-align: right;
margin-top: 20px;
+ width: 100%;
th, td {
padding: 3px;
diff --git a/r2/r2/templates/promoteinventory.html b/r2/r2/templates/promoteinventory.html
index 63c535e48..9796c9c44 100644
--- a/r2/r2/templates/promoteinventory.html
+++ b/r2/r2/templates/promoteinventory.html
@@ -47,46 +47,44 @@ ${unsafe(js.use('sponsored'))}
+
+
+
+ %for text in thing.header:
+ | ${text} |
+ %endfor
+
+
+
+
+ %for row in thing.rows:
+
+ |
+ %if not row.is_total:
+
+ ${plain_link(row.info['author'], row.info['edit_url'])}
+
+ %else:
+ ${row.info['title']}
+ %endif
+ |
+ %for column in row.columns:
+ ${column} |
+ %endfor
+ %endfor
+
+
+ %if thing.csv_url:
+
+ ${plain_link(_("download as csv"), thing.csv_url)}
+
+ %endif
-
-
-
- %for text in thing.header:
- | ${text} |
- %endfor
-
-
-
-
- %for row in thing.rows:
-
- |
- %if not row.is_total:
-
- ${plain_link(row.info['author'], row.info['edit_url'])}
-
- %else:
- ${row.info['title']}
- %endif
- |
- %for column in row.columns:
- ${column} |
- %endfor
- %endfor
-
-
-
-%if thing.csv_url:
-
- ${plain_link(_("download as csv"), thing.csv_url)}
-
-%endif
-