Spacing Where Hidden Date/Comments Are

Posted in: Newspaper
Post count: 263

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?

Post count: 555

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;
}

Post count: 263

@Steven, awesome man. The following one works perfectly. Thanks!

.td_mod2 .meta-info, .td_mod3 .meta-info, .td_mod5 .meta-info {
display: none;
}

Post count: 555

Glad i can help…ur welcome

Oh i know remember what that other code do,it take out the space between the blocks on the home page,all that white space in the middle of the blocks that other code removed..

Post count: 13

Hi, i have the same problem, but the code

.td_mod2 .meta-info, .td_mod3 .meta-info, .td_mod5 .meta-info {
display: none;
}
does not work.

What can be the reason?

Post count: 23312

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!

Post count: 13

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
}

Post count: 23312

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!

Post count: 13

Hello Catalin,
sorry. Here is the stuff:
https://indd.adobe.com/view/e25a7068-c91e-4b05-ad9a-5fafec8406f1
Thank you!

Post count: 23312

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!

Post count: 13

Yes. Very good. Thank you!

Viewing 11 posts - 1 through 11 (of 11 total)
You must be logged in to reply to this topic.