diff --git a/css/default_style.css b/css/default_style.css
index 2d02ef54a99e62456a8517431ae34ccb08724cf4..199d588d0450c81b285e1894060eaeb7f329ee64 100755
--- a/css/default_style.css
+++ b/css/default_style.css
@@ -6,12 +6,14 @@
     padding-left: 20px;
     border-top: 0.5px solid black;
     border-bottom: 0.5px solid black;
-    border-left: 0.5px solid black; 
+    border-left: 0.5px solid black;
     border-right: 0.5px solid black;
+    font-family: calibri light;
 }
 
 .frame h1,h2 {
 	text-align: center;
+    font-family: franklin gothic;
 }
 
 .button {
@@ -56,6 +58,7 @@ a:hover {
     width: 119px;
     float: left;
     text-align: center;
+    font-family: calibri;
 }
 
 .menu > h3 {
diff --git a/css/header.css b/css/header.css
index 623e5db6803bece72be774373f097e124df24ad9..6e015048ce8061bf823ce80b17eafc39df6f882f 100644
--- a/css/header.css
+++ b/css/header.css
@@ -23,8 +23,3 @@
     margin: 0 ;
     margin-top: 10px;
 }
-/*.menu {
-    text-align: center;
-    background-color: rgb(65,62,119);
-    height: 20px;
-}*/
diff --git a/template/menu.php b/template/menu.php
index 77287cef12da26fdd8bbdd581805fac459a49fea..46b281adc6249e39da2be0ebae0870b4bd023a14 100644
--- a/template/menu.php
+++ b/template/menu.php
@@ -1,18 +1,18 @@
 <?php
     echo '
-    <a href="order/order.php" name="order_link">
+    <a href="../order/order.php" name="order_link">
 	<div class="menu" id="order_link">
-		<h3>Order</h3>
+		<h3>ORDER</h3>
 	</div>
 	</a>
-	<a href="history/history.php" name="history_link">
+	<a href="../history/history.php" name="history_link">
 	<div class="menu" id="history_link">
-		<h3>History</h3>
+		<h3>HISTORY</h3>
 	</div>
 	</a>
-	<a href="profile/profile.php" name="profile_link">
+	<a href="../profile/profile.php" name="profile_link">
 	<div class="menu" id="profile_link">
-		<h3>My Profile</h3>
+		<h3>MY PROFILE</h3>
 	</div>
 	</a>
     ';