I am trying to use .less to modify a Joomla Gantry template. The text I'm trying to change with the "aa" class has linked audio, so the whole text shows up in blue color, which I am trying to change to dark brown. Here what I'm working with in my .less file:
.aa {
cursor: url(/images/listen.cur), progress !important;
color: @2E1507;
}
It's very simple, but I couldn't make the cursor change before without "progress !important", which doesn't make sense to me. Now I am trying to change the color, but I can't find a way. Is there something important that I'm missing in trying to change these styles?