diff --git a/_layouts/reverse.html b/_layouts/reverse.html
index 1c1e8c1..ecc8778 100644
--- a/_layouts/reverse.html
+++ b/_layouts/reverse.html
@@ -57,8 +57,10 @@
{% raw %}
+
{% endraw %}
diff --git a/assets/css/upcoming.scss b/assets/css/upcoming.scss
index f409317..4e6cd9f 100644
--- a/assets/css/upcoming.scss
+++ b/assets/css/upcoming.scss
@@ -26,8 +26,7 @@ body {
@include box-shadow( 0px 20px 40px 0px rgba($accent-color, 1.0));
top:0px;
z-index: 1000;
-
- min-width: 305px;
+ text-align: center;
h1 {
img {
@@ -42,6 +41,12 @@ body {
}
+.header {
+ min-width: 680px;
+ display: inline-block;
+ text-align: left;
+}
+
/* The actual timeline (the vertical ruler) */
.timeline {
position: relative;
diff --git a/upcoming.html b/upcoming.html
index 16ed0d2..f6c0204 100644
--- a/upcoming.html
+++ b/upcoming.html
@@ -114,7 +114,13 @@ {{ event.Description }} at {{event.Locati
day2_date = "2019-02-24";
for (x in schedule.day1){
schedule.day1[x].StartXML = formatDate(schedule.day1[x].Start, day1_date);
- schedule.day1[x].EndXML = formatDate(schedule.day1[x].End, day1_date);
+ // If event overlaps into next day, end time needs to be given day2_date
+ if (schedule.day1[x].Start.includes("PM") && schedule.day1[x].End.includes("AM")) {
+ schedule.day1[x].EndXML = formatDate(schedule.day1[x].End, day2_date);
+ }
+ else {
+ schedule.day1[x].EndXML = formatDate(schedule.day1[x].End, day1_date);
+ }
}
schedule.day2 = data.day2;
for (x in schedule.day2){