hello, does anyone know why the button in the section ‘image with text’ doesnt show in full colour?
it seems to be slightly transparent.
hello, does anyone know why the button in the section ‘image with text’ doesnt show in full colour?
it seems to be slightly transparent.
Please share your store URL
Hi, you have not added a link for that button.
To complete your requests, please follow these steps:
.image-with-text__text.rte.body + a.button.button--secondary {
opacity: 1 !important;
}
Here is the result:
I hope this helps
Best,
Daisy
Hello @junglecatclub
Go to online store ----> themes ----> actions ----> edit code ---->base.css
add this code at the end of the file and save.
.button.button--secondary {
opacity: 1 !important;
}
Thanks
this works in the editor, but when i try to click save it will not save
i also seem to not be able to change the button colour when this code is in
You have not add link for button so it is disabled
Please try this
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code
Step 2: Search file theme.liquid
Step 3: Insert this code above
{% style %}
.image-with-text__text.rte.body + a.button.button--secondary {
opacity: 1 !important;
background: red !important;
}
{% endstyle %}
Change the color in the code with the color code you want
Here is the result:
Best,
Daisy