Hello,
how can I decrease the space between the vertical and horizontal blocks on the homepage?
Hi,
If you use blocks on different rows you can set a negative margin for specific row/column:
Before – http://screencast.com/t/EIPvPZMwpByH
After – http://screencast.com/t/LjQiFe7kTP – http://screencast.com/t/1JbJXCREir
If you use blocks in the same row, it can be done only with custom css.
Thanks!
Yes,
use blocks in the same row. What can I do with CSS custom? What code to use?
Hi,
Provide more details(what block-a screenshot where I should look) and also a link.
Thanks!
HELLO,
it is the block11.
I need to decrease the space between the lines.

Hi,
This is the custom css to decrease padding for block 11 – http://screencast.com/t/BvmtaTfjq
.td_block_11 .block-title {
margin-bottom: 10px;
}
.td_block_11 .td_module_10 {
padding-bottom: 10px;
}
Thanks!
Sorry,
the block is 7 and module 10.
how can I do css?
thanks
Hi,
The block 7 is created using module 6 – http://screencast.com/t/uEkxEoIBrf you can inspect the block that you use just to see what module it uses and reduce the padding like I suggested above for block 11(just change the numbers for block and module).
Thanks!
Hi,
You can try this code, just enter it in Theme panel->Custom Css
.td_block_9 .td_module_8 {
border-bottom: none;
}
.td_block_9 .td_module_8 .entry-title {
margin-bottom: 0;
}
Before – https://www.screencast.com/t/FHEHFGRSXJj
After – https://www.screencast.com/t/3KyVQwJCl
If this does not work for you please provide a link to your website for a more accurate solution.
Thanks