Create global hover effect for hyperlinks?

I want to make all hyperlinks underline to disappear on hover globally on my Wix Studio site. Is there anyway I can do this in the editor or is it anyway to do it in CSS?

try this

a:hover {
    text-decoration: none;
}