Hello, is there a way to change the background color or the ability to replace it with a seamless pattern? It's a little too stark white for me.
Also, how do you remove the site description text in the header?
Thanks!
Changing background color and removing header text - Reds (2020)
-
- Registered User
- Posts: 64
- Joined: Thu Dec 14, 2017 7:41 am
- Location: US
Re: Changing background color and removing header text
Of course you can change the white background color.
To do this, open the file:
styles/reds2020/theme/coustom.css:
At the end, add this:
Then empty the forums and browser cache. If the color change does not take effect, you can also do the following:
However, the version with !important should only be used as a last resort.
For the site description you can try the following. In the same css file, add this at the end:
If previous customization causes errors, you can also do the following. Undo previous customizations except the .wrap.
Then open the file:
styles\reds2020\template\overall_header.html
find in this file:
an replace with:
Then open the file:
styles/reds2020/theme/coustom.css:
And add the following at the end:
Then just empty the forum and browser cache and you're done.
But remember that you have to repeat these changes every time you update the style.
To do this, open the file:
styles/reds2020/theme/coustom.css:
At the end, add this:
Code: Select all
.wrap {
background-color: #FFF; <-- Simply adjust the color value for the background.
}
Code: Select all
.wrap {
background-color: #FFF !important; <-- Simply adjust the color value for the background.
}
For the site description you can try the following. In the same css file, add this at the end:
Code: Select all
.site-description h1 {
display: none;
}
.site-description p {
display: none;
}
If previous customization causes errors, you can also do the following. Undo previous customizations except the .wrap.
Then open the file:
styles\reds2020\template\overall_header.html
find in this file:
Code: Select all
<h1>{SITENAME}</h1>
<p>{SITE_DESCRIPTION}</p>
Code: Select all
<h1 class="reds_sitename_h1">{SITENAME}</h1>
<p class="reds_sitename_p">{SITE_DESCRIPTION}</p>
Then open the file:
styles/reds2020/theme/coustom.css:
And add the following at the end:
Code: Select all
.reds_sitename_h1, reds_sitename_p {
display: none;
}
Then just empty the forum and browser cache and you're done.
But remember that you have to repeat these changes every time you update the style.
-
- Jr. Extension Validator
- Posts: 480
- Joined: Thu Mar 14, 2019 6:07 pm
Re: Changing background color and removing header text
Hey thanks for taking the time to put together such a thorough response as it greatly helped me do what I needed. Hopefully it will come in handy for someone else in the future as well.
Thanks again!
Thanks again!
-
- Registered User
- Posts: 64
- Joined: Thu Dec 14, 2017 7:41 am
- Location: US