diff --git a/src/main/resources/log4j.xml b/src/main/resources/log4j.xml
index 3f0299af09f392a7e791f5cbe711a8b71b941cae..817cc73645c0bcf0b155497ed9ee8bbeff6ac0db 100755
--- a/src/main/resources/log4j.xml
+++ b/src/main/resources/log4j.xml
@@ -19,6 +19,14 @@
 		<level value="info" />
 	</logger>
 	
+	<logger name="javax.validation">
+		<level value="debug" />
+	</logger>
+	
+	<logger name="org.hibernate.validator">
+		<level value="trace" />
+	</logger>
+	
 	<!-- Root Logger -->
 	<root>
 		<priority value="info" /><!--
diff --git a/src/main/webapp/WEB-INF/jsp/owners/ownersList.jsp b/src/main/webapp/WEB-INF/jsp/owners/ownersList.jsp
index 149090d1e80d08630e7ac75c67b965562ef49c94..3ed300056c85645c46df5dc6d593b5c4e137b1c4 100644
--- a/src/main/webapp/WEB-INF/jsp/owners/ownersList.jsp
+++ b/src/main/webapp/WEB-INF/jsp/owners/ownersList.jsp
@@ -19,11 +19,11 @@
 		<table class="table table-striped">
 		  <thead>
 		  	<tr>
-			    <th>Name</th>
-			    <th>Address</th>
+			    <th style="width: 150px;">Name</th>
+			    <th style="width: 200px;">Address</th>
 			    <th>City</th>
 			    <th>Telephone</th>
-			    <th>Pets</th>
+			    <th style="width: 100px;">Pets</th>
 		    </tr>
 		  </thead>
 		  <c:forEach var="owner" items="${selections}">
diff --git a/src/main/webapp/WEB-INF/jsp/pets/createOrUpdatePetForm.jsp b/src/main/webapp/WEB-INF/jsp/pets/createOrUpdatePetForm.jsp
index 0b693b9b40c97b045e066dc84326660fb35eec28..53b8c8cca0b7c36dab763b9026be81c3f98ee4f7 100644
--- a/src/main/webapp/WEB-INF/jsp/pets/createOrUpdatePetForm.jsp
+++ b/src/main/webapp/WEB-INF/jsp/pets/createOrUpdatePetForm.jsp
@@ -32,7 +32,7 @@
 						</div>
 					</div>
 					<div class="control-group" id="birthDate">
-						<label class="control-label">Birth Date </label>
+						<label class="control-label">Birth Date (yyyy-MM-dd)</label>
 						<div class="controls">
 							<form:input path="birthDate" />
 							<span class="help-inline"><form:errors path="birthDate" /></span>
diff --git a/src/main/webapp/resources/css/petclinic.css b/src/main/webapp/resources/css/petclinic.css
index 64852d959e7bca3e4423ce792137f7d63ee2621c..5ad24c1b9aa38362607d91332f21d91a39d96c62 100644
--- a/src/main/webapp/resources/css/petclinic.css
+++ b/src/main/webapp/resources/css/petclinic.css
@@ -1,14 +1,14 @@
 .container {
 	padding-top: 10px;
 	margin-left: 50px; 
-	width: 610px;
+	width: 700px;
 }
 
 .form-horizontal {
   	width: 100%;
 }
 
-input {
-	line-height: 35px;
+input[type="text"] {
+	height: 25px;
 }