Separating Title & Description Color
-
Let’s see if I can explain this as best as I can. I would like to make my blog’s title color different from its description color. I’m extremely new to CSS, but from what I understand, it seems as though the color for the title and description are connected:
}
#site-title a, #site-description {
color: #000000 !important;}
</style>Is there anyway I can split this coding up, so that I can make the site description a different color from the site title?
I hope that made sense to someone. :)
The blog I need help with is: (visible only to logged in users)
-
CSS editing is theme specific editing. Your blog is private an no Volunteers can view it and assist you.
-
Sorry about that. I didn’t realize my blog was set to private. Okay, I think you should be able to see it now.
-
Thanks. I see that you are using the Bouquet theme. I don’t help with CSS editing but I wanted you to know the foregoing in advance of other Volunteers who do help logging in.
-
Hi there, yes you can split them up and assign separate colors. If you look at that code you have, there is a comma. The part before the comma is for the site title and the part after is for the site description. You can make two separate rules and set the color independently like this. (Pardon the obnoxious demo colors I used.)
#site-title a {
color: #22cc00;
}#site-description {
color: #aa00cc;
}` -
-
- The topic ‘Separating Title & Description Color’ is closed to new replies.