Remove Frontpage Sections

Premium BuddyPress WordPress theme perfect for venue, music brand or community music website.
GK User
Mon Feb 03, 2014 1:55 pm
Hi I would like to know if is it possible to remove the zone at the bottom of the "Best Albums" (the black, white and red areas).
I only want to show the circle button in the header but not the one at the bottom of "best albums".

The page is here: http://quick.tuducha.com

Hope you can understand what i'm trying to do.

Thanks
User avatar
Senior Boarder

GK User
Mon Feb 03, 2014 3:28 pm
Hi,

Try to add this code into css/override.css file
Code: Select all
.frontpage.dark-bottom #gk-dark-bottom {
   height: 0;
}
.frontpage.dark-bottom .gk-page-wrap {
   padding-bottom: 0;
}


First enable this override option from template options -> advanced tab.

You can also remove text widget from Bottom V widget area ("THERE ARE MANY VARIATIONS OF
PASSAGES LOREM IPSUM AVAILABLE"
User avatar
Moderator

GK User
Tue Feb 04, 2014 12:32 am
Thanks Piotr. The code you gave me works fine, but I need to remove this circle (see screenshot). I only want the first one that appears in the header. Is it possible?
User avatar
Senior Boarder

GK User
Tue Feb 04, 2014 8:29 am
Yes it is, but I have to check the code directly on your website, now I see only blank page here.
User avatar
Moderator

GK User
Tue Feb 04, 2014 8:03 pm
Sorry, I had deactivated the buddy press plugin. I didn't know that it was necessary. Now you can view the site again
User avatar
Senior Boarder

GK User
Tue Feb 04, 2014 9:52 pm
Add this code into override.css file
Code: Select all
#gk-mainbody .gk-section-nav {
display: none;
}


Regarding BuddyPress plugin - it's not necessary, if you don't need it you can deactivate and remove it, but first you have to remove connected widgets - from header and sidebar areas, then you have to deactivate rtmedia plugin and finally buddypress plugin.
User avatar
Moderator

GK User
Wed Feb 26, 2014 10:09 am
Hi again. I finally have to remove the area at the bottom of the page. I tried to edit some css but the only thing I get it's that the footer disappear and I don`t know how to show it again. Can someone help me to remove the area at the bottom (see screenshot) and make the footer text appears again.

Site: [url]quick.tuducha.com[/url]

Thanks
User avatar
Senior Boarder

GK User
Wed Feb 26, 2014 1:46 pm
Hi,

So you edited css from the theme? you should use css/override.css file or Child Theme for your modifications, now I have no idea what exactly did you change, which files did you edit?
User avatar
Moderator

GK User
Wed Feb 26, 2014 2:48 pm
Thanks for your reply Piotr. I have made some changes in the override.css file and I think I hace change some parameters in the template.css and in the wp.css. I forgot to make those changes in a Child Theme and I'm not sure If I can solve that,

Thanks again for your support.
User avatar
Senior Boarder

GK User
Wed Feb 26, 2014 8:51 pm
This code should be in css/template.css file:

Code: Select all
#gk-bottom-section {
background: #fff url('../images/style1/bottom_bg.jpg') no-repeat center top;
overflow: hidden;
padding: 400px 0 50px 0;
position: relative;
}
User avatar
Moderator

GK User
Thu Feb 27, 2014 12:43 am
Hi again Piotr. This is exactly the code that I change. Finally I have used this code:
Code: Select all
#gk-bottom-section {
   background: #fff url('../images/style1/bottom_bg.jpg') no-repeat center top;
   overflow: hidden;
   padding: 180px 0 0px 0;
   position: relative;   


I have changed the footer color in the style5.css file but I wasn't able to remove the space between the grid and the footer (see screenshoot). I have change some padding values but it does`t work. can you tell me hoy to remove it.

Thanks again for the support
User avatar
Senior Boarder

GK User
Thu Feb 27, 2014 1:12 am
Hi again. I finally found the solution in other post adding this code:

Code: Select all
#gk-bottom-section {
margin-bottom: -30px;
margin-top: -200px;
}


Solved. Thanks
User avatar
Senior Boarder


cron