Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] Issue with changing background-color etc. Reply To: [Solved] Issue with changing background-color etc.

#199332
sogeti.scott
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;
}