Hi Tom,
I seek to ‘semi-bold’ most of the links throughout my site. Except for blog titles on the blog page. I am able to achieve the level of boldness I seek by suing font-weight: 500.* Since I’m using Google’s Montserrat font I’m able to achieve the ‘goldie locks’ balance I seek.
But how do I get the links within the blog post and pages to be bolden, without having the blog titles within the blog page get bolden too?
*I tested a couple of related css code found above.
and
a {
font-weight: bold;
}
and
.inside-article a {
font-weight: bold;
}
I understand the “a {….” code bolds all links throughout the site.
I understand the “.inside-article…” code is supposed to bold links inside pages and posts.
Both links work as presented.
But when I use the “.inside-article…” code, blog titles on the blog page get bolded too. Is there any way to have the titles of the blogs (which link to the blogs themselves) not be bolded too?