Uses proper layout
diff --git a/source/core-developers/ajax-client-side-validation.md b/source/core-developers/ajax-client-side-validation.md
index 27a7f62..139013a 100644
--- a/source/core-developers/ajax-client-side-validation.md
+++ b/source/core-developers/ajax-client-side-validation.md
@@ -1,5 +1,5 @@
 ---
-layout: core-developers
+layout: default
 title: AJAX Client Side Validation
 parent:
   title: Client Side Validation
@@ -204,8 +204,8 @@
 JSON providing a new URL to load. Otherwise the AJAX response will be empty and the form must be submitted a 2nd time 
 but as usual request, not AJAX.
 
-| Setting _validate_ to _true_ in the _form_ tag will enable client side, JavaScript validation, which can be used along 
-  with AJAX validation (runs before the AJAX validation).
+> Setting _validate_ to _true_ in the _form_ tag will enable client side, JavaScript validation, which can be used along 
+>  with AJAX validation (runs before the AJAX validation).
 
 ### Custom Theme
 
diff --git a/source/core-developers/client-side-validation.md b/source/core-developers/client-side-validation.md
index 28f0d8b..314499b 100644
--- a/source/core-developers/client-side-validation.md
+++ b/source/core-developers/client-side-validation.md
@@ -2,8 +2,8 @@
 layout: default
 title: Client Side Validation
 parent:
-    title: Validation
-    url: validation.html
+  title: Validation
+  url: validation
 ---
 
 # Client Side Validation
diff --git a/source/core-developers/pure-java-script-client-side-validation.md b/source/core-developers/pure-java-script-client-side-validation.md
index 451c19e..43fde3e 100644
--- a/source/core-developers/pure-java-script-client-side-validation.md
+++ b/source/core-developers/pure-java-script-client-side-validation.md
@@ -1,5 +1,5 @@
 ---
-layout: core-developers
+layout: default
 title: Pure JavaScript Client Side Validation
 parent:
   title: Client Side Validation
@@ -38,9 +38,9 @@
 for properly manipulating the HTML DOM to display the error message inline. The JavaScript that is responsible for doing 
 this logic is `validation.js` and can be found in each theme.
 
-| Errors are reported using the default validation message, not the internationalized version that the server-side might
-  be aware of. This is a known issue. You may want to try the [AJAX Client Side Validation](ajax-client-side-validation) 
-  for messages that are fully internationalized.
+> Errors are reported using the default validation message, not the internationalized version that the server-side might
+> be aware of. This is a known issue. You may want to try the [AJAX Client Side Validation](ajax-client-side-validation) 
+> for messages that are fully internationalized.
 
 ## Additional Validator Support