I would like that all my links in the body are "strong" but not the links in the sidebar etc. What would I need to add to my childtheme css?
Thank you already for the helpful hint!!!
I would like that all my links in the body are "strong" but not the links in the sidebar etc. What would I need to add to my childtheme css?
Thank you already for the helpful hint!!!
a { font-weight: bold; }
#sidebar a { font-weight: normal; }
thank you for the hint.
Only issue is, like this also slider headings, thumb headings etc. go bolt as well on the frontpage. is the a specific css container to target "content" body only?
it's better to target what you want bold then, than setting everything bold.
f.ex. this sets the links inside post/pages wrapped in paragraphs links to bold:
.post p a { font-weight: bold; }
You must log in to post.