Footer Link Colour
Autor: Andy W.
Visitado 1030,
Seguidores 1,
Compartilhado 0
Hi,
Trying to change the footer link colour from the theme wide default to white and i'm not succeeding. I change the colour to white in the text box and then as soon as I save, it reverts to the default, though oddly I have got some of the changes to stick but not sure how!
https://engineering-employment.com/
Many thanks
Andy
Publicado em
into HTML object tries something like that.
<a style="font-size:22px;text-decoration:none; color:navy" href="https://www.google.it/" alt="Google" title="Google"> open Google </a>
Hey Andy.
Try to create visual link rules for the entire site in these settings, which I have shown in the pictures.
Sincerely,
Dmitriy.
Autor
Hi, thank you for quick replies. I think Dmitriy if I've looked at that correctly, that changes all the links site wide and I don't want to create white links on the main content areas.
Axel, thank you for that, I was hoping there was something less fiddly and whether not being able to change the colour was some sort of bug, but inserting css into the link or creating a footer a href specific css in the header seems to be a solution.
Hey Andy,
Stronger code here to do the same.
<style>
.linkfooter {
color: red;
}
.linkfooter:hover {
color: black;
}
</style>