Hi,
I have seen that is an option to configure theme-wide fonts and also theme colors.
But I cannot find where I can set the font color for the excepts that are shown for posts when they are displayed in blocks. (Right now it is a very light grey and I want to make it darker, I just don’t know where).
I have the same problems for breadcrumbs. It is so light it is almost invisible. But where do I change the color for that font. I couldn’t find any place where it said ‘breadcrumb font color’ or ‘excerpt font color’.
Regards
Stefan
Hi,
Flex blocks are the only blocks that have such a setting – http://prntscr.com/mk097i
Default blocks don’t have a setting for the excerpt color. It could be set with CSS, I could give you a solution.
Mention for which blocks you want to do this, or if it should be in general. Let me know.
Thanks
Hi Simion,
Yes, I have noticed that flex blocks have that setting.
But I would prefer to set it just in one place – no matter which type of block I use. Using flex blocks in every single instance and having to configure it in each single flex block on each page individually would be a nightmare and is therefore not an option. I thought there must be a simple configuration I have just overlooked. If I have to use CSS then I will if you tell me where – but I guess that would mean changing the code of the theme and with a theme update it would probabaly be overwritten.
Do you at least have a simple solution for the breadcrumbs?
Regards
Stefan
-
This reply was modified 7 years by
StefanK.
Hi,
Then a CSS solution would work. For example a code like this will color all the excerpts for all blocks/modules at once – http://prntscr.com/mmovr4
Use the color you want in the code, then enter it in the custom CSS section of the theme panel
.td-excerpt {
color: black;
}
For the breadcrumbs try something like this – https://forum.tagdiv.com/topic/customizing-look-of-breadcrumbs/
Thanks