From beb4a82ddab9a5e14045a6191fa14f3ef724d9bd Mon Sep 17 00:00:00 2001 From: Laury GvR Date: Tue, 5 Apr 2016 16:24:53 -0400 Subject: [PATCH] Margin added to separate footer from content --- css/app.css | 5 ++++- scss/_main.scss | 2 +- scss/_page.footer.scss | 1 + scss/plugins/_woocommerce.scss | 3 +++ 4 files changed, 9 insertions(+), 2 deletions(-) diff --git a/css/app.css b/css/app.css index 7530cc3..0c39103 100644 --- a/css/app.css +++ b/css/app.css @@ -6426,7 +6426,7 @@ header { height: 45px; } main { - margin-bottom: 90px; } + margin-bottom: 150px; } main.page-front #main-content h1 { font-size: 1.5rem; color: #ed7023; } @@ -7043,6 +7043,8 @@ main.woocommerce, div.woocommerce { margin: 0 auto; text-align: left; width: 80%; } + main.woocommerce .shop_table.shop_table_responsive.cart, div.woocommerce .shop_table.shop_table_responsive.cart { + margin-top: 20px; } main.woocommerce .main.woo-single-product #content, div.woocommerce .main.woo-single-product #content { /* Related products */ /* End Related products */ } @@ -7632,6 +7634,7 @@ input[type="submit"].blogbutton { transform: rotate(45deg); } footer.main { + margin-top: 30px; padding-top: 5px; position: absolute; bottom: 0; diff --git a/scss/_main.scss b/scss/_main.scss index 2aa8572..71e4c08 100644 --- a/scss/_main.scss +++ b/scss/_main.scss @@ -1,5 +1,5 @@ main { - margin-bottom: 90px; + margin-bottom: 150px; &.page-front { #main-content { h1 { diff --git a/scss/_page.footer.scss b/scss/_page.footer.scss index ab52ba9..32e0b14 100644 --- a/scss/_page.footer.scss +++ b/scss/_page.footer.scss @@ -1,4 +1,5 @@ footer.main { + margin-top: 30px; padding-top: 5px; position: absolute; bottom: 0; diff --git a/scss/plugins/_woocommerce.scss b/scss/plugins/_woocommerce.scss index 4034514..575620a 100644 --- a/scss/plugins/_woocommerce.scss +++ b/scss/plugins/_woocommerce.scss @@ -713,6 +713,9 @@ div.woocommerce { width: 80%; } } + .shop_table.shop_table_responsive.cart { + margin-top: 20px; + } /* End General CSS */ -- 2.17.1