I'm setting up Shoppy on my website but I don't like the embed style. Is there a way to change the CSS from my code?
<script src="https://shoppy.gg/api/embed.js"></script>
<button data-shoppy-product="PRODUCT ID">Pay</button>
I'm setting up Shoppy on my website but I don't like the embed style. Is there a way to change the CSS from my code?
<script src="https://shoppy.gg/api/embed.js"></script>
<button data-shoppy-product="PRODUCT ID">Pay</button>
You have to include your own CSS file and have to overwrite the default CSS. You can overwrite the default CSS by adding a class selector with the default class selector in your CSS file and write your own CSS. For example, if the default CSS is,
.embed--header {
background: #1c2260;
}
then you can overwrite like this:
.embed--header.changebackground {
background: #000;
}
Be sure to give the class name as "changebackground" to your element, otherwise nothing change will happen.