I can’t seem to find it, but is there a way to set the default color for the block titles? https://www.westislandblog.com/newspapertheme/ it’s a blue now, i’d like it to be red as the default. Then if i want the block color to be different in some places, i know i can do that in the editor
Hi,
I think that you are referring to header ( https://www.screencast.com/t/TAtNBdbOH3d ), if is so than you’ll need to edit the page and set for each block the title background color -> https://www.screencast.com/t/VdEfFYJLBBSr
Thank you!
I’m having the same issue, not the header tittle, but the tittle of the posts inside the block… They are currently black.
Even when i try to change the color using the TagDiv Composer “Title text color” in the General settings does not work.
Hi,
Please check the color theme from theme panel -> https://forum.tagdiv.com/theme-colors-introduction/
-> https://www.screencast.com/t/4279smom -> https://www.screencast.com/t/mJxq6pIoCM
For post titles from blocks you need to set a custom css-> https://www.screencast.com/t/mHELrYRN
.item-details h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a {
color: blue;
}
Set the code in Newspaper>Theme panel>Custom code>Custom css
Or you can use flex blocks instead of sample blocks -> https://www.screencast.com/t/6jgQtTlyKgXw
Thank you!
Im trying to do a different color scheme for one specific block (Block 15), so its not working because its affecting the colors of the other blocks…
I tried the code:
.td-block-span4 a {
color: #fff;
}
But also affects the color of other Blocks that is using the block 15.
Is it possible to have a different post tittle inside block 15 without affecting the theme colors or other blocks?
Hi,
For that block this can be achieve only with custom css -> https://www.screencast.com/t/GjYaAo9tIGz
.td_block_15 .entry-title a {
color : red;
}
If you want you can try some flex blocks, those have a lot more options.
Thank you!
