Home › Forums › CSS › [Solved] Issue with changing background-color etc. › Reply To: [Solved] Issue with changing background-color etc.
March 31, 2015 at 7:20 am
#199332
Participant
In your style2.css file, line 534:
#content {url(../img/bg-content.jpg) 0 0 repeat #1f1e21}
Points to a file that does not exist and defines the background color.
For the font, same file (style2.css), line 49:
.lead {
font-size: 14px;
line-height: 20px;
color: #676667;
margin: 0;
text-decoration: none;
}
You need to change the color here and line 10:
h1, h2, h3, h4, h5, h6 {
font-family: "Open Sans", sans-serif;
color: #8e8e8e;
font-weight: bold;
line-height: 1.2em;
}