Archived topic
different color site title on home page from all other pages
1 reply · Started by Mark on April 22, 2019
Viewing posts 1–2 of 2
I am trying to get the site title on the home page (and styling hover, visited, current as well) to be different than on the other pages. Do I need CSS for this, and if so, can you tell me what it should be?
Thanks,
Mark
Hi there,
Looks like you almost got it already?
This is the CSS you are using:
.home .main-title a, .main-title a:hover, .main-title a:visited {
color: white;
}
You just need to do something like this:
.home .main-title a {
color: #ffffff;
}
.home .ain-title a:hover {
color: #000000;
}
Let me know if this helps :)
This archived topic is closed to new replies.