CSS attribute for the new topic button?

Last CSS question I swear. Most of my site is CSS customized but I just cant figure out the CSS code for changing the new topic button color (both hover and non-hover)

Perhaps you can change it in the admin settings along with other UI through the color scheme, but looking for the specific CSS attribute

Thanks!
Jen

1 Like

Well the id on the button is create-topic (which since it’s an id you reference as #create-topic), and you use :hover to only apply something on hover. To change the button color you want to use background-color (if you want to change the text you’d use color).

So for example:

#create-topic {
    background-color: red;
}

#create-topic:hover {
    background-color: blue;
}
4 Likes