• Resolved Eric4381

    (@eryk4381)


    I am trying to change the transparent transition to solid color to just a solid color. I have tried adding:

    .has-header-image .navbar, .has-header-video .navbar {
    position: absolute;
    width: 100%;
    /* background: 0 0;
    background-image: linear-gradient(to bottom,rgba(0,0,0,.2) 1%,rgba(0,0,0,0) 100%); */
    background-repeat: repeat-x;
    }

    .navbar {
    background: #ff8d1c;
    }

    This, in theory, will give it the same color as what is chosen on scroll and I cant figure out what I am doing wrong because the Nav menu is still transparent until I scroll.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Thread Starter Eric4381

    (@eryk4381)

    After staring at my code and the CSS on the site the fix was easier than I was making it!

    .has-header-image .navbar {
    background-color: #ff8d1c;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Change Hero Header to Solid Color’ is closed to new replies.