Hide the line that contains "category", "author", "date" in "Block 9"

Posted in: Newspaper
Post count: 34

Hello,

Is there any way I can hide/disable that line that contains “category”, “author”, “date” below the post title in “Block 9”?

Like this:
https://imgur.com/jumUurG

Thanks

Post count: 35449

Hello,

If you want to hide all these only from that block, then you can achieve this only with custom css -> http://prntscr.com/p53mzh
.td_block_9 .td_module_8 .td-module-meta-info{
display: none;
}

This code need to be set in theme panel>Custom code> Custom css
Also we recommend to use flex blocks, those have more option and can be set how you want on each device -> https://forum.tagdiv.com/flex-block-settings-guide/

Thank you!

Post count: 34

Hi,

Thanks for the reply! I was able to hide the meta info.
Also, how do I reduce the margin/padding between each post?
I tried setting padding: 5px; but it didn’t work (right after display:none;)

Thanks!

Post count: 35449

Hello,

You can use this custom css -> http://prntscr.com/p5kg18
.td_block_9 .td_module_8 {
padding-bottom: 5px;
}

Also you can use the flex block and set theme how you want to be display, those elements have more options and can be set to have a different layout per device -> https://forum.tagdiv.com/flex-block-settings-guide/

Thank you!

Viewing 4 posts - 1 through 4 (of 4 total)
The forum ‘Newspaper’ is closed to new topics and replies.