diff --git a/app/assets/stylesheets/sections/help.scss b/app/assets/stylesheets/sections/help.scss
index 178a735941d9b6937d3fb0776fce890f34e32bcf..94cef187d1c6270bd7fce1230316f5a1c7396916 100644
--- a/app/assets/stylesheets/sections/help.scss
+++ b/app/assets/stylesheets/sections/help.scss
@@ -1,10 +1,12 @@
 .documentation {
-  padding-bottom: 10px;
-  p {
-    padding: 10px 14px;
+  h1 {
     margin: 0;
   }
 
+  h2 {
+    font-size: 20px;
+  }
+
   li {
     line-height: 24px;
     color: #888;
diff --git a/app/views/help/index.html.haml b/app/views/help/index.html.haml
index 1b714429f1437975bafb575608b54c27936ddbfe..258a468f7bd49931b4fb16b271a9803e8476841e 100644
--- a/app/views/help/index.html.haml
+++ b/app/views/help/index.html.haml
@@ -36,9 +36,9 @@
   .col-md-8
     .panel.panel-default.documentation
       .panel-heading Documentation
-
-      = preserve do
-        - readme_text = File.read(Rails.root.join("doc", "README.md"))
-        - text = readme_text.dup
-        - readme_text.scan(/\]\(([^(]+)\)/) { |match| text.gsub!(match.first, "help/#{match.first}") }
-        = markdown text
+      .panel-body
+        = preserve do
+          - readme_text = File.read(Rails.root.join("doc", "README.md"))
+          - text = readme_text.dup
+          - readme_text.scan(/\]\(([^(]+)\)/) { |match| text.gsub!(match.first, "help/#{match.first}") }
+          = markdown text