I am trying to change the css of the error page. I add this code.
.error-code::after {
border-bottom: 3px solid #bd2975!important;
bottom: 0;
content: "";
display: block;
left: 50%;
margin-left: -50px;
position: absolute;
width: 100px;
}
.error-code {
color: #fff;
font-size: 50px!important;
font-weight: 500!important;
line-height: normal;
margin-bottom: 40px;
position: relative;
}
.button-home {
background: #bd2975 none repeat scroll 0 0!important;
border: 0 solid #fab325;
color: #fff;
display: inline-block;
font-weight: bold;
padding: 12px 40px;
text-decoration: none;
text-transform: uppercase;
}
But this doesn’t show a result. What am I doing wrong?
I would also like to add a logo on the error page. How can I do that?