Hello, instructed by email to add this in here.
http://www.breadandbutterfootball.com
In the homepage by the header there is a big white gap which I’d like to close up to make website look better. Could I get a CSS code to help with this and where to put it? Thanks
Hi,
I assume you are referring to this white gap: http://screencast.com/t/4wiVwbNeehh
You can use a custom css to reduce the white space like so:
.home .td-main-page-wrap {
padding-top: 10px;
}
Thank you!
Thanks for that, got it working for desktop no hassle, however on mobile on have not.
http://postimg.org/image/gi1vf24ln/
Image shows a lot of white where the advertise is. That’s the bit I would like to reduce, also
Is there a way of getting people to edit profiles without going into the backend?
Thanks
Hi,
If you want to reduce the space for mobile, you can use this css:
@media(max-width:767px){
.td_block_big_grid_1, .td_block_big_grid_2, .td_block_big_grid_3, .td_block_big_grid_4, .td_block_big_grid_5, .td_block_big_grid_6, .td_block_big_grid_7, .td_block_big_grid_8, .td_block_big_grid_9, .td_block_big_grid_10, .td_block_big_grid_11, .td_block_big_grid_12{
padding-bottom: 10px!important;
}}
As for the the second request, our theme doe snot have any options on the front-end for user profiles. You can try out a plugin like buddypress
Thank you!
Hello mate, I tried adding that code but didn’t seem to work? That just go in the custom CSS for mobile plugin?
Hi,
If you use the mobile theme then the code will not work. Please use this one instead:
.td-a-rec-id-header_mob{
margin-top:0!important;
}
@media(max-width:767px){
.td-a-rec{
margin: 0 auto 0; !importamt;
}}
Add the code in the standard custom css box, not the advanced one.
Thanks.