Hi,
I think that you are referring to this one https://i.imgur.com/D0jRpRj.png our theme do not has an option to display the subtitle on blocks, this can be done with some custom changes or a better approach is to use the custom filed and set the same text as the one from the subtitle -> https://i.imgur.com/mDEjkDe.png the results will be -> https://i.imgur.com/pYBWKri.jpg (you can style the layout).
Thank you!
Hello Calin,
hey awesome! Not quite what I was looking for, but very much in the right direction. I had previously overlooked this function. Where can I find the options to change the style / background of the text?
By the way, you were right, I was looking for exactly the marked points in the picture.
Would it be a lot of work to include this feature like RND in an update? I’m sure I’m not the only one who would like to use something like this.
I had already asked elsewhere about a live blog funktion like Tickaroo or 24liveblog. That would be a great extension too. There are so many things like sports, storms, elections ect. about which one would like to inform in a live blog.
Regards
Thomas
-
This reply was modified 4 years by
chip303. Reason: Question Style Editing
I found the style/position change feature works the same as the category label, then it’s redundant on the home page.
But how can I prevent the custom label from behaving like a link?
Meets my need! Thanks to your cool programmers!

Thomas
-
This reply was modified 4 years by
chip303.
Hi,
Unfortunately I do not know what will take to implement those features, but I think that for a developer is not so hard.
Indeed the option it is using the category style. Unfortunately for the moment there are no individual settings for what you required, but this can be done with a css like this one
.td-module-meta-info .td-post-category.td-post-extra-category {
cursor: default;
pointer-events: none;
background: none;
color: gray;
font-family: arial;
font-size: 14px
}
body .td_block_inner .td-module-container:hover .td-post-category.td-post-extra-category {
background: none;
}
The css can be adjusted after your needs and it need to be set in the theme panel > custom code> custom css.
Thank you!