Hi everyone,
I would like to change the color of the button for the “Image with Text” section, i want it to be red.
Can anyone help me please?
The site URL is: looveme.co
Hi everyone,
I would like to change the color of the button for the “Image with Text” section, i want it to be red.
Can anyone help me please?
The site URL is: looveme.co
Hi @LeoBSN ,
What color scheme would you like here?
Hi @JHKCreate and thanks for the answer.
I want it to be #EC0F0F
Add this to your styles.scss file:
.featured-link--half .button {
background-color: #EC0F0F;
}
Let me know if that works!
Sorry it didn’t work how I wanted, I want the borders to be red (with white background), and when I put the mouse over it (I thinks it’s called button hover) I want it to be all red with white text
That makes more sense now!
Remove the previous code and add the following:
.block--1610735609871eab3f-0 a.button {
color: #000000;
border-color: #EC0F0F;
}
.featured-link--half .button:hover {
background-color: #EC0F0F;
color: #ffffff;
border: #EC0F0F;
}
Let me know!
Now it’s better, but only hover color changed, not the borders
Adjust the first piece of code to have this:
.block--1610735609871eab3f-0 a.button {
color: #000000;
border-color: #EC0F0F!important;
}
Let me know
It worked, thank you so much for your time!
You’re most welcome! Just tag us whenever you need anything!