I suppose one thing you could try is adding an eye catching background to the icon.
For example . . . .
Within file path —> /templates/ja_sugite/local/css/themes/school/template.css
at/around line 1025 or so, locate the following CSS rule:
.btn {
background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
border-radius: 0;
border-width: 2px;
font-weight: 700;
position: relative;
text-transform: uppercase;
transition: all 0.3s ease-out 0s;
z-index: 1;
}
Modify the “background” property with a different color code – something to catch the eye.
As an example (using the color black) . . .
background: #000000;
border-radius: 0;
border-width: 2px;
font-weight: 700;
position: relative;
text-transform: uppercase;
transition: all 0.3s ease-out 0s;
z-index: 1;
}
Just an idea