Plugin Author
Baden
(@baden03)
Wow. Ok. First, take a look at the default css. You will notice there is a definition for:
.collapseall:hover, .expandall:hover {
text-decoration: underline;
}
So to override this, you would add some CSS to either your theme’s css or the custom css area of the plugin’s option page:
.collapseall:hover, .expandall:hover {
text-decoration: none;
}
And if for some reason that does not work, try:
.collapseall:hover, .expandall:hover {
text-decoration: none !important;
}
Got it?
Yes I got. I’ve put it to custom css area and it still looks the same. 🙁
Plugin Author
Baden
(@baden03)
That was a test.
.colomat-hover {
text-decoration: none;
}
We are happy to help, but you questions are about basic CSS. Please google and read about CSS.
This issue is resolved.