diff --git a/data/interfaces/newsletters/recently_added.html b/data/interfaces/newsletters/recently_added.html
index f8670bae..49c3fd13 100644
--- a/data/interfaces/newsletters/recently_added.html
+++ b/data/interfaces/newsletters/recently_added.html
@@ -264,13 +264,6 @@
visibility: hidden;
width: 0;
}
- .body-message {
- color: #282A2D;
- font-size: 16px;
- margin-bottom: 15px;
- text-align: center;
- width: 100%;
- }
.view-full {
clear: both;
color: #282A2D;
@@ -309,6 +302,13 @@
font-size: 20px;
text-align: center;
}
+ .body-message {
+ font-size: 20px;
+ text-align: center;
+ width: 80%;
+ margin-left: auto;
+ margin-right: auto;
+ }
/* -------------------------------------
MEDIA SECTIONS
------------------------------------- */
@@ -523,7 +523,8 @@
table[class=body] .server-name {
font-size: 20px !important;
}
- table[class=body] .dates {
+ table[class=body] .dates,
+ table[class=body] .body-message {
font-size: 14px !important;
}
table[class=body] .sub-header > div {
@@ -606,12 +607,6 @@
- % if body:
-
- ${'
'.join(l for l in body.splitlines()) | n}
-
- % endif
-
% if base_url and not preview:
Click here to view the full newsletter.
@@ -622,7 +617,7 @@
-
@@ -630,6 +625,16 @@
${parameters['start_date']} - ${parameters['end_date']}
|
+
+ % if body:
+
+
+
+ ${' '.join(l for l in body.splitlines()) | n}
+ |
+
+ % endif
+
% if recently_added.get('movie'):
diff --git a/data/interfaces/newsletters/recently_added_master.html b/data/interfaces/newsletters/recently_added_master.html
index 8a45b1d5..23c5cca1 100644
--- a/data/interfaces/newsletters/recently_added_master.html
+++ b/data/interfaces/newsletters/recently_added_master.html
@@ -264,13 +264,6 @@
visibility: hidden;
width: 0;
}
- .body-message {
- color: #282A2D;
- font-size: 16px;
- margin-bottom: 15px;
- text-align: center;
- width: 100%;
- }
.view-full {
clear: both;
color: #282A2D;
@@ -309,6 +302,13 @@
font-size: 20px;
text-align: center;
}
+ .body-message {
+ font-size: 20px;
+ text-align: center;
+ width: 80%;
+ margin-left: auto;
+ margin-right: auto;
+ }
/* -------------------------------------
MEDIA SECTIONS
------------------------------------- */
@@ -523,7 +523,8 @@
table[class=body] .server-name {
font-size: 20px !important;
}
- table[class=body] .dates {
+ table[class=body] .dates,
+ table[class=body] .body-message {
font-size: 14px !important;
}
table[class=body] .sub-header > div {
@@ -606,12 +607,6 @@
- % if body:
-
- ${' '.join(l for l in body.splitlines()) | n}
-
- % endif
-
% if base_url and not preview:
Click here to view the full newsletter.
@@ -622,7 +617,7 @@
-
@@ -630,6 +625,16 @@
${parameters['start_date']} - ${parameters['end_date']}
|
+
+ % if body:
+
+
+
+ ${' '.join(l for l in body.splitlines()) | n}
+ |
+
+ % endif
+
% if recently_added.get('movie'):
| |