Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
Posted June 21, 20204 yr Will it be possible to get color settings in the theme for the Section title/Categories? If they are currently, there, they aren't blatantly obvious. Thanks
June 21, 20204 yr You can use the following CSS variables: --theme-section_title: background color. --theme-section_title_font: text color. :root { --theme-section_title: 255,0,0; /* red background */ --theme-section_title_font: 0,255,0; /* green text */ } https://htmlcolorcodes.com/
June 22, 20204 yr Both background and font color are available as theme settings - look for the "section title" settings on the Text tab (technically you can overwrite the CSS variables as shown above, but it isn't necessary and may be confusing later).
June 23, 20204 yr Author Thanks for the code. I know I can fiddle with it that way. I am just hoping for easy color selection in the settings with the other color options . It's easier to maintain. And thanks. I'll check the text tab when I get home. Edited June 23, 20204 yr by Myr
June 23, 20204 yr Author On 6/22/2020 at 11:48 AM, Rikki said: Both background and font color are available as theme settings Found it, thanks!