diff --git a/assets/scss/general.scss b/assets/scss/general.scss
index fcff373..3bd982b 100644
--- a/assets/scss/general.scss
+++ b/assets/scss/general.scss
@@ -60,6 +60,15 @@ mark {
     background: #ddd;
 }
 
+// Styling for menu
+
+menu {
+    margin: auto !important;
+    text-align: center !important;
+    width: 100% !important;
+}
+
+
 
 /* ------------------------------------------------------------------------ */
 /* Styling for listing pages. */
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index f0eff85..ef42d4f 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -10,7 +10,7 @@ This template render single pages
   {{ partial "content.header.html" . }}
   {{ partial "toc.html" . }}
   <section>{{ .Content }}</section>
-  <section>{{ partial "footer.html" . }}</section>
-  <section>{{ partial "nav.html" . }}</section>
+<section>{{ partial "nav.html" . }}</section>
+<section>{{ partial "footer.html" . }}</section>
 </article>
 {{ end }}