decrease white spacein between widget areas

eCommerce WordPress theme to create online shop with WooCommerce support
GK User
Tue Sep 09, 2014 12:37 pm
Hello

Is it possible to further adjust the amount of white space in between the widget areas on my homepage?
(I have done it successfully with your help between footer and Bottom 3)

For example:
currently there is too much white space above Bottom 3. (In between mainbody and bottom 3).


Thanks
User avatar
Senior Boarder

GK User
Tue Sep 09, 2014 1:07 pm
By the way, custom posts is disabled in advanced theme settings.
User avatar
Senior Boarder

GK User
Wed Sep 10, 2014 8:20 am
Hi, try to add this code:

Code: Select all
.home #gk-bottom3 {
   margin-top: 0;
}
User avatar
Moderator

GK User
Wed Sep 10, 2014 12:33 pm
Thank you, I have tried doing a similar thing for the space in between footer and bottom 3 but didn't seem to work?
User avatar
Senior Boarder

GK User
Thu Sep 11, 2014 8:28 am
I can't check it, because something is wrong with your website now..
User avatar
Moderator

GK User
Thu Sep 11, 2014 4:09 pm
Maybe you were checking the 'test' site?
www.pommedorange.com should be working.
User avatar
Senior Boarder

GK User
Fri Sep 12, 2014 7:39 am
Try to add this code:

Code: Select all
.home #gk-bottom3 {
   margin-bottom: 0;
}
User avatar
Moderator

GK User
Fri Sep 12, 2014 8:09 am
Thanks but unfortunately this didn't work. I also tried adding !important to it.
User avatar
Senior Boarder

GK User
Fri Sep 12, 2014 8:48 am
You dont' have this code in your override.css file, you have this:
Code: Select all
.home #gk-bottom3 {
   margin-top: 0;
}

Please change it to
Code: Select all
.home #gk-bottom3 {
   margin-top: 0;
margin-bottom: 0;
}


or add my previous code at the end )with margin bottom, not top.
User avatar
Moderator

GK User
Fri Sep 12, 2014 9:21 am
This code did the trick. Is it also possible to delete the grey line I have above Bottom 3? Thanks Piotr
User avatar
Senior Boarder

GK User
Mon Sep 15, 2014 7:00 am
Yes, add also this code:

Code: Select all
#gk-footer > div {
   border: 0;
}
User avatar
Moderator

GK User
Mon Sep 15, 2014 12:17 pm
perfect!
User avatar
Senior Boarder


cron