I’ve disabled the comments, views, date below post title. I am trying to get rid of the spacing below the title in the module (http://screencast.com/t/gQQ5WfIj). Whenever I change the CSS for it, it effects the other widgets (block 3, etc) and squeezes them real tight. Is there another div. meta-info to adjust?
Hey @sbo i’m going share two css code with you try them i don’t remember which one i’m using to removed mine but you can try them both..add them in the theme settings in the CSS section…
.td_block1, .td_block2, .td_block3, .td_block4, .td_block5, .td_block6, .td_block7, .td_block8, {
padding-bottom: 0px !important;
}
.td_mod2 .meta-info, .td_mod3 .meta-info, .td_mod5 .meta-info {
display: none;
}
Hello pupi,
The code above is not working for you, because the code is valid only for Newspaper 4 and if you are using the new version of Newspaper you will be changed the code, like this:
.td_block_1, .td_block_2, .td_block_3, .td_block_4, .td_block_5, .td_block_6, .td_block_7, .td_block_8 {
padding-bottom: 0px !important;
}
Also, you should add the other blocks in code (td_block_9, …etc) if you are used these blocks in your website.
Hope this helps and let us know how it goes!
Thank you!
Hello Catalin,
thank you for your answer. Unfortunately it does not work.
I have used the code below:
.td_block_1 .td_block_2 .td_block_3 .td_block_4 .td_block_5 .td_block_6 .td_block_7 .td_block_8 {
padding-bottom:0px!important;
}
The following custom code that I use works:
.td_block_6 .td-module-thumb .entry-thumb{
display:none;
}
.td_block_6 .td_module_5 .td-module-thumb{
height:0px!important
}
Hello pupi,
First of all, please provide your URL website so can I inspect it closer. Also, please provide more details because I did not understand well what you want to do. (some screenshot would be useful). I need to know these details so I can be able to provide a more accurate response.
Thank you for your understanding!
Hello Catalin,
sorry. Here is the stuff:
https://indd.adobe.com/view/e25a7068-c91e-4b05-ad9a-5fafec8406f1
Thank you!
Hello pupi,
You can get rid of that white space if you hide the meta_data_info with a bit of Css. Please try the code below and place it in Theme panel->Custom Css area.
.td-module-meta-info {
display:none;
}
The result you should see here: http://screencast.com/t/KxiKEsTkz
I hope that is what you wish.
Hope this helps and let us know how it goes!
