Hide Date on home page

Posted in: Newspaper
Post count: 186

Hi Support,

Please this is my website.

1. how do i hide the whole modules from showing, Date, Author, except just only one

2. which file will i edit to change the whole site font and size

3. How do i extend the background color on the Module Tile to full instead of just half way

Post count: 22421

Hello,

1) You can hide the meta data from blocks from the theme panel: https://www.screencast.com/t/lJ4UiFiYO4

2) Unfortunately our theme does not have a setting to change the font for all the elements at once. There is a workaround if you do not want to change all of the fonts from the fonts section: https://forum.tagdiv.com/topic/do-i-really-need-to-change-all-the-text-fields-for-fonts/

3) In order to do that, you will have to change the block header style: https://www.screencast.com/t/QmIqQaNLoP

Thank you!

Post count: 186

Hi.

2. Now that i have disabled all the date from showing on all, how do i enabled just 1 to show the date ?

Post count: 22421

Well when you disabled the meta data, you disabled each individual element including the date. Please enable just the date option: https://www.screencast.com/t/ZJiia4c5a

Thanks

Post count: 186

I mean to appear only just on one module

Post count: 22421

Hi,

Unfortunately the theme does not have meta data control for the mobile version in particular. These elements are enabled or disabled for all versions of the site at once.
If you need to only activate the data on mobile, you will have to enable it and then hide it on desktop and tablets using css.
Enable the date from the theme panel and then use this css in the theme panel->custom css box:
@media(min-width:767px){
.td-post-date, .td-post-author-name span{
display:none;
}}

Thank you!

Post count: 186

I mean to disable it on 1 module not mobile

Post count: 22421

Hello,

If you want to disable the date on a specific module you can use a similar code to this one:

.td_module_2 .td-post-date, .td_module_2 .td-post-author-name span{
display:none;
}

Thank you!

Post count: 186

I guess i will replace the number with my desired module number

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