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
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
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
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