Title Links Colour

Posted in: Newspaper
Post count: 27

Hi,
i have an issue with the title link color.

The H2,H3 etc subtitle dosen’t change color when linked.

I have quite few Subtitle on my blog used like a link,
but the have the same color of a normal text.

I’d like to make them like a normal text,
if they have a link they should change colour.

I hope it’s clear enough
Thanks

Post count: 20688

Hi,

If you mean the post subtitle – https://www.screencast.com/t/U6yUyJvVpc the font properties can be changed in the Theme panel->Theme fonts->Post elements – https://www.screencast.com/t/dS679WmxxouR For the color of the subtitle however, there is no option to change it at the moment, but you could use custom css like in this example – https://www.screencast.com/t/hP0Ti93dfI
You can follow this guide to create custom code using the browser inspector tool – https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
Please correct me if I misunderstood what you meant, and also provide more details specifying exactly what you want to achieve, so I can give you a more accurate response.

Thanks

Post count: 27

HI,
thanks for your reply.

I’m Speaking of internal text, H2 and H3.
It’s not just about the color, it’s aboutthe link color.

If you insert a link on normal text, it change color.
It’s not the same for H2,H3,H4 etc title.

I want that titles (h2,h3,h4 etc) with links works in the same way as other links.

I hope it’s more clear now
Thanks

Post count: 20688

Hi,

Sorry for misunderstanding. That is the way it works, a link in a paragraph tag inherits the theme accent color set here – https://www.screencast.com/t/lZAKS48Rz6 and it can be further customized in the post – https://www.screencast.com/t/ez88BPn9Cc When creating a link with a heading tag it inherits the color set here – https://www.screencast.com/t/6Ov6sZd8uAF0
What you could do in this situation is to use a code like this – https://www.screencast.com/t/ICrRzjGobRN and set the color you want for these heading links. This can be used for the other headings you might want to use – https://www.screencast.com/t/DCNb8WLARHWG This is the code I used in the example, but you can use any color you want

h2 > a {
color: #4db2ec;
}

Thanks

Post count: 27

Ok thanks.
I have to change all 1 by 1?

Is there a way to apply this rule to all links? (h1,h2,h3,etc)

Cheers

Post count: 20688

Hi,

You can use the code from the last screenshot, so that it applies to all those situations like this

h1 > a,
h2 > a,
h3 > a,
h4 > a {
color: #4db2ec;
}

Thanks

Viewing 6 posts - 1 through 6 (of 6 total)
The forum ‘Newspaper’ is closed to new topics and replies.