Sorry, that should have been in code block:
.infobox_title:hover {
color:#d57d2d; /* or whatever color you want it to change to */
}
nfrankus, the css to change the text color of the title when you hover could be:
.infobox_title:hover {
color:#d57d2d; /* or whatever color you want it to change to */
}
Basically, find the class of the object you want to set, add :hover and set the color property.
I had the same problem and simply added some additional code to my Fruitful child theme’s functions.php. Now I specify the “icon-link” in the shortcode and if it’s not blank, the icon will be a link.
If you’re interested in the code, let me know and I’ll post it.