DiegoPino Why Not Display the reaction icon permanently?
I have no experience with this extension, but usually you can easily uncover contents that are hidden by CSS and revealed on mouseover. Just look for the CSS associated with the element in question. It may look along the lines of:
.someClass {
display: none;
}
.someClass:hover {
display: initial;
}
Instead of initial
, the CSS could also show inline
or block
. In this case, you could write your own CSS overruling the given one:
.someClass {
display: initial;
}
Put this CSS into the the Custom Styles
input box under Administration / Appearance.
You may probably need to add an !important
setting to make this code work:
.someClass {
display: initial !important;
}