Viewing 12 reply threads
You must be logged in to reply to this topic.
Hi,
I have put a button on the footer (the footer has a black background). The problem is that until I select it, it does not appear. How can I change the colors of the footer button?
I have screenshots but I don’t see where to attach them.
Regards,
Alex
Hello,
Please upload the screenshot here: https://imgbb.com/
Share the link with us. Also, if you can add a link of the site, that would be very helpful.
Best regards!
Thank you Mirela, but I need to know how can I change other botton things:
– hover: background-color + font color + border color
– normal: background-color + font color + border color
Regards,
Alex
Hello,
The css added for the button in footer is this:
footer .cl-btn {
color: #b39772 !important;
}
To customize the background and border, you need to add attributes for them as well. These are the attributes to add:
`background-color: #2b2b2ae0 !important;
border: 1px solid #fff !important;`
Result code will be:
footer .cl-btn {
color: #b39772 !important;
background-color: #2b2b2ae0 !important;
border: 1px solid #fff !important;
}
For the hover version add this:
footer .cl-btn:hover {
color: #b39772 !important;
background-color: #2b2b2ae0 !important;
border: 1px solid #fff !important;
}
Change the colors and border width to your wish.
Best regards!
You must be logged in to reply to this topic.