diff --git a/popup/config.html b/popup/config.html
index 292342fe35a752c3b9dafee3cdc45bd4bb30d96a..492d5ff2b6d7d8177f2427c13284085ffdbddf67 100644
--- a/popup/config.html
+++ b/popup/config.html
@@ -24,13 +24,17 @@
 
 .input_field{
 	font-size: 14px;
-	height: 15px;
+	height: 20px;
+	border-style: solid;
+	border-radius: 5px;	
+	border-width: 1px; 
+	border-color: #AAAAAA;
+	background-color: white;
 }
 
 .select_field{
 	font-size: 14px;
-	height: 25px;
-	padding: 0px 0px 0px;
+	height: 24px;
 	border-style: solid;
 	border-radius: 5px;	
 	border-width: 1px; 
diff --git a/popup/config.js b/popup/config.js
index 0f3bf67f935849482514549c57b37dfb5d6dbbaa..4223c03345351b5f007d8bcae1b395e84392588e 100644
--- a/popup/config.js
+++ b/popup/config.js
@@ -38,7 +38,7 @@ var html = "<td><select class=\"select_field\" id=\"select_action" + line_number
 html = html + "<td><input class=\"input_field\" size=\"15\" id=\"header_name"+ line_number + "\"></input></td>";
 html = html + "<td><input class=\"input_field\" size=\"20\" id=\"header_value"+ line_number + "\"></input></td>";
 html = html + "<td><input class=\"input_field\" size=\"20\" id=\"comment"+ line_number + "\"></input></td>";
-html = html + "<td><select class=\"select_field\" id=\"apply_on" + line_number + "\"><option value=\"req\"> Request </option><option value=\"res\">Response</option></select></td>";
+html = html + "<td><select class=\"select_field\" id=\"apply_on" + line_number + "\"><option value=\"req\"> request </option><option value=\"res\">response</option></select></td>";
 html = html + "<td><select class=\"select_field\" id=\"select_status" + line_number + "\"><option value=\"on\"> on </option><option value=\"off\">off</option></select></td>";
 html = html + "<td><input class=\"button\" type=\"button\" value=\"Delete\" id=\"delete_button" + line_number + "\"></input> </td>";