diff --git a/js/helper.js b/js/helper.js
index e2a62a8..5a56d57 100644
--- a/js/helper.js
+++ b/js/helper.js
@@ -34,7 +34,11 @@ var HTMLschoolDates = "
%data%
";
var HTMLschoolLocation = "%data%
";
var HTMLschoolMajor = "
Major: %data%"
-var HTMLonlineClasses = "Online Classes
";
+// added this to give online classes its own div; otherwise it uses the education div as its left alignment (doubles left padding)
+var HTMLonlineClassesStart = "";
+
+// added a line break before online classes header to make it easier to read
+var HTMLonlineClasses = "
Online Classes
";
var HTMLonlineTitle = "%data%";
var HTMLonlineSchool = " - %data%";
var HTMLonlineDates = "%data%
";
@@ -163,4 +167,4 @@ window.addEventListener('load', initializeMap); // calls the initialize map
window.addEventListener('resize', function(e) {
// Make sure the map bounds get updated on page resize
map.fitBounds(mapBounds);
-});
\ No newline at end of file
+});