technova76 1) How Can I change the color of the button in the error page?
2) I would like to test a different image with text for the error page. But I see that the shape with the text in the template, is separated from the image. How can I hide this shape? (I will change the image from ftp)
Do you mean the 'Homepage' button on error page?
Here is css code for it:
.btn-home-page {
background-color: rgba(255, 255, 255, 0.05);
border: 2px solid rgba(255, 255, 255, 0.1);
border-radius: 50px;
color: #fff;
/*hover color*/
.btn-home-page:hover, .btn-home-page:focus, .btn-home-page:active {
background-color: #c36349;
border-color: #c36349;
}
You can change to your desired color
I see that the shape with the text in the template
Which shape are you referring to? could you share screenshot?