Is there a way to change the button color? Also, can you change the shape, etc?
passcode for site is soccer16
Is there a way to change the button color? Also, can you change the shape, etc?
passcode for site is soccer16
Hi @pierraswim Apply this in theme.scss or theme.css or baSE.CSS IN ASSETS FOLDER IN EDIT THEME LEFT TO CUSTOMIZE THEME OPTION
.button.button--primary {
background-color: aqua !important;
border-radius: 30px !important;
]
it still has the square around it even though its round and is there a way to make it a see through white but still noticeable on the page??
Please add below css in bottom of assets/base.css file
a.button.button–primary {
border-radius: 10px;
background: red;
}
a.button.button–primary::before {
display: none;
}
a.button.button–primary::after{
display: none;
}
Thank you.
Hi, this did work. but is there any way to make it a see through color but still noticeable on the page? I don’t like how the color is so bold. I tried changing it to brown and its not the right color? How do I make the color faded a bit?