A bit of CSS help

Hi X Team,

So I’m trying to get a real simple CSS style to work:

.txt_link_00:hover {
color:#586A86 !important;
}

On the following page:

And it looks like it should be working (http://prntscr.com/nb2wmh) but its not going through for some reason.

Can I get a little help on what I’m doing wrong, thx.

John

Hi John,

Thanks for writing in! Please update your CSS rule as follows and it should work.

.txt_link_00 a:hover {
    color: #586A86;
}

Hope that helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.