Site logo

Archived topic

"Un-bold" Site Title?

5 replies · Started by James on April 24, 2021

Viewing posts 1–6 of 6

I have chosen to bold all my hyperlinks to make them stand out, but this has bolded the site title as well. Is it possible to just have it unbolded? The Miramichi Reader
Thanks,

Hi James,

You could use this selector p:not(.main-title) to replace the p in your CSS.

Let me know :)

I'm not sure if I have implemented it correctly:

p a:link, p a:hover, p a:active, p a:visited, p:not(.main-title) {
    text-decoration: underline;
font-weight:bold
}

I did clear all caches.

Hi there,

you could do this:

#page p a {
    text-decoration: underline;
    font-weight:bold;
}

This will only apply the style to links within a paragraph that are inside the Page content. It won't affect the Header.

That did the trick, David! Thank you so much.

Glad to be of help

This archived topic is closed to new replies.