Block 9 customization

Posted in: Newspaper
Post count: 69

“Block 9” or “Module 9″ ?? Uses td_block_10” – (That’s a bit confusing?)
I’m trying to make it more compact, and remove the category from meta data. But it don’t respond to the “Block Setting” where I should be able to disable this.

I also tried in CSS with:

.td_block_10 .td_module_19 .td-module-meta-info{
display:none!important;
}

But that don’t do anything, how can I control what / if meta data is displayed for “Block 9” ?
And how can I adjust the padding / margin of block 9 over and under its content?
How can I put the date ABOVE the title and not below as it appear now?

Thanks!

Post count: 6535

Hi

Each block is made from one or more modules, you can check where each module is used in theme panel > block settings: http://screencast.com/t/QzDf5x4NaF
Your css is almost correct, you just need to change the a number, instead of module 19 use module 9:

.td_block_10 .td_module_9 .td-module-meta-info{
display:none!important;
}

To move the date above title you need to edit td_module_9.php and move the function which generate the title below meta info: http://screencast.com/t/9OGJHggyqocq

Hope this helps.
Thanks!

Post count: 69

Thanks, Andrei..

If I did modify the php file.. change would be overwritten when I update the theme?

K

Post count: 7909

Hi,

Yes, all the theme’s files are overwritten by the update. You could try to use the child theme as the module’s files are supported by child theme – https://forum.tagdiv.com/the-child-theme-support-tutorial/

Thanks!

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