x

When I scroll down, the header background changes, but my site title doesn't

When I scroll down, the header background changes, but my site title doesn't

image

Image of my title when the header background changes

Does anyone know how to fix it'

P.S. I know some HTML and CSS

1,683 Views
Message 1 of 3
Report
2 REPLIES 2

There's a couple ways you could do this.  One is to add/change the header background to this:

<style>
.splash-page #header.minimal
{
background:#fff !important;
}
</style>

The other option is to change text color of your logo to this:

<style>
#header.minimal #wsite-title
{
color:#ffffff !important;
}
</style>

I'd make sure both are at the bottom of main-style.css so they don't get overwritten by later rules.

1,675 Views
Message 2 of 3
Report

Nither of these work for some reason.

1,670 Views
Message 3 of 3
Report