I’m going to assume that you are either using a custom css editor or a child theme. add this,
.entry p,
.widget a {
font-weight: 700;
color: #000;
}
this will make the paragraph text and the widget text the same color and weight, use whatever weight and color you would like of course.
You could also separate the two like this,
.entry p {
font-weight: 700;
color: #000;
}
.widget a {
font-weight: 400;
color: #000;
}
if you prefer. I hope this helps.
I tried this and play around, and ended up taking it out because the font is different on the pages vs posts. Now that I deleted this CSS from my CSS plugin editor, I’ve still got different font for them.
What I really want is to be able to set the new font sitewide so it will impact everything.
Try this,
body {
font-weight: 700;
color: #000;
}
This seems to have worked better. I did have to go down to 300 to have the font not all look bold but heavier than what was before, and went with a dark gray 606060, but think I’m liking it better now.
Good. Yeah 700 is a bit heavy, I just used it for testing purposes and then copy and pasted the code when I was done. I’m glad I could help. If you no longer need help with this please make sure you mark the thread resolved.