Hover for links in footer

Hej,

I would like to know how I can set up a hover for links in my footer like a different color or an underline? At the moment I have no hover effect for links in my footer.

Thanks in advance
Bastian

Hey Bastian,

For now, you can use the CSS snippet below to do that. But if you take a look at our new theme, which will be released a week or two from now, it already has the options for that. You can check the latest blog entry for more information.

footer a:hover {
  color: red;
  text-decoration: underline;
}

Hope this helps!

Ben