Hi,
You can reduce the space using custom css in Theme Panel > Custom Css, also on mobile device you have some space issues because you hide the Big Grid row. You can try this custom css and see if it helps – http://screencast.com/t/pjr3MS9dlnDV – http://screencast.com/t/A4vtqpPK
.home .td-footer-wrapper {
padding-top: 0;
}
.home .td-main-content-wrap {
padding-bottom: 0;
}
@media(max-width: 767px) {
.home .td-page-content {
padding-bottom: 0 !important;
}
.td-footer-wrapper .td_block_3 {
margin-bottom: 10px !important;
}
}
Thanks!
Thank you so much. It helped a lot.
But I still see many white spaces around and it is quite scarying.
In Desktop View, I see spacing among post itself quite big. Screenshots below.
1. http://www.screencast.com/t/7WDCgw0lJ2
2. http://www.screencast.com/t/Im11vhUNfoa
Thanks!
Hi
Try this custom css:
@media (min-width: 1021px){
.td_block_12 .td_module_11 a img{
height: 235px!important;
}
}
.td-page-content{
padding-bottom: 0;
}
.td-footer-wrapper{
padding-top: 0;
}
The result should be like here: http://screencast.com/t/I1ZjZy3PYVi – http://screencast.com/t/yCuOCt2Uk
Thanks!
-
This reply was modified 10 years by
Andrei L..
Hi,
Try the following css: – http://screencast.com/t/MwkGwHEww
.td_block_12 .td_module_11 {
padding-bottom: 0px;
}
.td-footer-wrapper {
padding-top: 0px;
}
.td-main-content-wrap, .td-page-content {
padding-bottom: 0px;
}
.td-footer-wrapper .td_block_3 .td_module_1 {
padding-bottom: 0px;
}
.td-footer-wrapper .td_block_wrap {
margin-bottom: 0px;
}
Thank you!
-
This reply was modified 10 years by
Emil G.
Hi Emil G – Thank you!
Initially the code you shared didnt work so I removed all custom css and tried. It worked like a charm with zero spacing.
But I still see a defect. Screenshot: http://www.screencast.com/t/c9X7jj7C
You can also alternatively visit: ViralBae.com
Please advice.
PS: Add comments to sections which you have used in code like impact footer and posts section etc. It will be helpful.
Thank you.
Hi Emil
Sorry for the come back but I see the posted code does not work with Firefox.
Screenshot here:- http://www.screencast.com/t/fMa6DDLcx
whilst chrome looks as expected:- http://www.screencast.com/t/WFC4boNXp
Please comment.Thanks!
Hi,
Please review the code, try to add it step by step and see what happens on firefox. Try to add my code, then Emil’s code and see how it goes.
If the issue persist please remove all the above code, so I can inspect and try again a code for you.
Thanks!
Hi Alin, Thank you so much.
The Step by step debug worked.
Please find below code I have used.
.home .td-footer-wrapper {
padding-top: 0;
}
.home .td-main-content-wrap {
padding-bottom: 0;
}
@media(max-width: 767px) {
.home .td-page-content {
padding-bottom: 0 !important;
}
.td-footer-wrapper .td_block_3 {
margin-bottom: 10px !important;
}
}
.td_block_12 .td_module_11 {
padding-bottom: 10px;
}
.td-footer-wrapper {
padding-top: 0px;
}
.td-main-content-wrap, .td-page-content {
padding-bottom: 0px;
}
.td-footer-wrapper .td_block_3 .td_module_1 {
padding-bottom: 0px;
}
.td-footer-wrapper .td_block_wrap {
margin-bottom: 0px;
}
@media (min-width: 1021px){
.td_block_12 .td_module_11 a img{
height: 235px!important;
}
}
Thanks!