Hi, I cannot find the button on your website, but I might be able to help with styling the button.
The developer added an easy way to add a new icon to your button.
Check under Favorites Settings > Display (Tab) > Button Text
Here you can set the text for the button.
See the part that says
<i class="whatever-class-here"></i>
This is where the button icon is displayed. I personally like to use Font Awesome, as they have a nice selection of icons. https://fortawesome.github.io/Font-Awesome/icons/
——————
I decided to go with a heart icon instead of the star. The font awesome icon class for a heart is “fa-heart”.
So I replaced the original <i class="whatever-class-here"></i>
code with <i class="fa fa-heart"></i>
.
To change the color of the icon, you can do that with simple css.
In my case, since I’m using the font awesome heart icon, the class I want to add css to is “fa-heart” (as you can see above).
So the css would look like this:
.fa.fa-heart { color: rgb(227, 43, 35); }
This adds a nice red color to my heart icon.
If this is a bit confusing, here’s everything I did to style my buttons.
——————————————————
In Settings Menu –
Button Text:
<i class="fa fa-heart-o"></i> Favorite
Button Text (Favorited):
<i class=”fa fa-heart”></i> Favorited
——————————————————
CSS Styles –
.fa.fa-heart-o { color: rgb(227, 43, 35); font-size: smaller; }
.fa.fa-heart { color: rgb(227, 43, 35); font-size: smaller; }
——————————————————
Even further, adding a bit more CSS to my entire button to customize to our theme –
.simplefavorite-button { border: 1px solid #CDCDCD; background-color: rgb(221, 221, 221); border-radius: 3px; opacity: .5; }
(The above css changes the border color, the background color of the button, the border radius, and the opacity of the button.)
I know this might all sound confusing, but I hope it helps.
Any questions, feel free to ask ??