In style.css file, if you have the following code, go to
“background-color: #000;” line,
change #000 to some color code you like e.g., #1E90FF
This would be a temporary fix. Make sure NOT to delete semi-colon (;).
———-
.site:before {
background-color: #000;
content: “”;
display: block;
height: 100%;
min-height: 100%;
position: absolute;
top: 0;
left: 0;
width: 182px;
z-index: 2;
}
—————