Boutiques: Change color of Instashop Follow Button
If you are using the Instashop Layout in your Boutiques plugin, you may wish to alter the color of the Follow Link, which appears under your embedded Instagram widget. Here is what this Code Hack looks like in action:
And here's the code you need to achieve it!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Add this code in your Dashboard by going to Appearance > Customize > Additional CSS. | |
*/ | |
.button, #em-insta-cta a { | |
background: #fff; | |
color: #000; | |
/* | |
If you wish for your button to have a border, change the #000 code below | |
to the color of your choice. You can also increase the 1px to 2px, 3px, etc. | |
to change how thick the border is. If you don't want your button to have a border, | |
you can delete the line below. Be sure to leave the closing } bracket!*/ | |
border: 1px solid #000; | |
} | |