You have this css rule which makes all your paragraph tags the dark gray.
/*media all*/
p {
color: #474747;
line-height: 1.5em;
}
You can change this in your child theme the same way.
p{
color: <<yourcolor>>;
}
Thanks, mrtom414. For now, I added the code in the style.css in the parent theme – but I’ll set up a child theme once I have time.
Worked great, thanks!
Please disregard the question below – I found the file in the Blog Manager Light directory.
A (hopefully) quick questions:
The font color change I did, re: above, doesn’t apply to blog posts. Using Firebug, I was able to find the color code in various .css files.
I changed the color codes in the files belonging to Blog Manager Light without luck. The Style Editor also shows that the color code #474747 appears in default.css, but I cannot find this file anywhere. I’m not sure if it’s important, but the file is marked with a * in the style editor.
Do you know where I can find the file or where the color override seems to come from?
Thanks in advance.
Hi mrpchristensen
The basic method of changing the color of text and links
Dashboard / Appearance / Customize /
Select Section ‘Colors’
Click Select Color of Font Color
Preview text color Good enough, then Save & Publish.
File that is the root of these settings
libs/csscolor.css.php
above file is related work Section ‘Color Scheme’
Base Color Change then Web Page background will brending select color.
Color Type Change then Perfect different style.
Thank you.
Thanks, Nobita. When changing the font color in the menu as you describe above, it only affected sub-headings. For some reason, default.css (which I found in a plugin folder) overrode the theme’s color setting for paragraph text. Changing the color code in default.css worked.
Thanks.