Module Date Display

Posted in: Newspaper
Post count: 7

Hi there,
I want, not show date on mainpage module’s item detail section. i add “display:none;” to .td-module-meta-info but this hide date on posts and pages date too. i just want dont want to display meta info on modules, not in posts. any idea?

Post count: 23312

Hello,

If you want to display the meta info only for your modules and to hide them for posts, please try to use the code below and place it in Theme panel->Custom CSS area.

The code is ->

.td-post-header .td-module-meta-info {
display:none;
}

Thanks.

Post count: 7

i want to do opposite of this 🙂 display in post, don’t want to display in modules.

EDİT: done with these codes

.td-module-meta-info {
font-family: ‘Open Sans’, arial, sans-serif;
font-size: 9px;
margin-bottom: 2px;
line-height: 1;
min-height: 10px;
display:none;
}

.td-post-header .td-module-meta-info {
display:inherit;
}

  • This reply was modified 10 years by siktirella. Reason: solved
Post count: 23312

Hello siktirella,

Okayyy, sorry for my bad understanding!

The code is ->

.td-module-meta-info {
display:none;
}
.td-post-header .td-module-meta-info {
display:block;
}

Thanks for the message!

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