diff --git a/profiles/wcm_base/themes/ocio_omega_4/css/ocio-4.no-query.css b/profiles/wcm_base/themes/ocio_omega_4/css/ocio-4.no-query.css
index fd33ed9eee7ae58a024a388f553e00d4162d3f25..0b5f50e2515b34830fca737b69d8190bfe4568a2 100644
--- a/profiles/wcm_base/themes/ocio_omega_4/css/ocio-4.no-query.css
+++ b/profiles/wcm_base/themes/ocio_omega_4/css/ocio-4.no-query.css
@@ -497,11 +497,11 @@ a.feed-icon {
   z-index: 2;
 }
 
-.l-region--pre-footer-wrapper .lt-gray {
+.l-region--pre-footer-wrapper.lt-gray {
   background: #ededed;
 }
 
-.l-region--pre-footer-wrapper .white {
+.l-region--pre-footer-wrapper.white {
   background: white;
 }
 
diff --git a/profiles/wcm_base/themes/ocio_omega_4/css/ocio-4.styles.css b/profiles/wcm_base/themes/ocio_omega_4/css/ocio-4.styles.css
index c66e39303446915b26f7402648c99f55e66ad72a..0981f72dd34bfdc6c78ca9af6f6e0ee2b55a36c9 100644
--- a/profiles/wcm_base/themes/ocio_omega_4/css/ocio-4.styles.css
+++ b/profiles/wcm_base/themes/ocio_omega_4/css/ocio-4.styles.css
@@ -527,11 +527,11 @@ a.feed-icon {
   z-index: 2;
 }
 
-.l-region--pre-footer-wrapper .lt-gray {
+.l-region--pre-footer-wrapper.lt-gray {
   background: #ededed;
 }
 
-.l-region--pre-footer-wrapper .white {
+.l-region--pre-footer-wrapper.white {
   background: white;
 }
 
diff --git a/profiles/wcm_base/themes/ocio_omega_4/layouts/ocio-4/ocio-4-layout.tpl.php b/profiles/wcm_base/themes/ocio_omega_4/layouts/ocio-4/ocio-4-layout.tpl.php
index 16a2e2bb43b9c13f1fb6e236501da7e81102038f..573cee917018ac285dc9e5251031a35ce0819221 100644
--- a/profiles/wcm_base/themes/ocio_omega_4/layouts/ocio-4/ocio-4-layout.tpl.php
+++ b/profiles/wcm_base/themes/ocio_omega_4/layouts/ocio-4/ocio-4-layout.tpl.php
@@ -25,11 +25,13 @@
 			<?php print $messages; ?>
 			<?php print render($page['workbench']); ?>
     </div>
+
     <?php if (!$landing_page) :?>
     <div class="l-constrained max-width">
     <?php else: ?>
     <div>
     <?php endif; ?>
+
 			<div class="l-content" role="main">
       	<?php if (!$is_front && !empty($title)): ?>
       		<?php if ($landing_page) :?>
diff --git a/profiles/wcm_base/themes/ocio_omega_4/sass/components/regions/_pre-footer.scss b/profiles/wcm_base/themes/ocio_omega_4/sass/components/regions/_pre-footer.scss
index 65ecbcf6e5c9593af7ad2812ec4009735ac9b082..b09019d0c81b7cd626c19bfd513253b1d6574355 100644
--- a/profiles/wcm_base/themes/ocio_omega_4/sass/components/regions/_pre-footer.scss
+++ b/profiles/wcm_base/themes/ocio_omega_4/sass/components/regions/_pre-footer.scss
@@ -1,7 +1,7 @@
-.l-region--pre-footer-wrapper .lt-gray {
-	background: $lt-gray;
+.l-region--pre-footer-wrapper.lt-gray {
+  background: $lt-gray;
 }
 
-.l-region--pre-footer-wrapper .white {
-	background: white;
+.l-region--pre-footer-wrapper.white {
+  background: white;
 }