Adding Gradient Backbround to Header Bar?

I am having trouble with the CCS code to achieve this…

This is the page: http://thoughtclouddigital.com/a2c/

Hi @ajrenk,

Thanks for reaching out.

When I check your video, the only error I can see on your code is the improper way to declare an ID. I can see that you have an ID “#navbar2” and class “navbar2back”.

In your customize tab, please remove the “#” in your ID. Your ID should look like this “navbar2”.

Then there are multiple ways to call the CSS selector base on the ID and class you added.

First:

#navbar2 {
 //Your CSS code
}

Second:

.navbar2back {
  //Your CSS code
 }

Third:

#navbar2.navbar2back {
  //Your CSS code
 }

You can choose any of the CSS selectors on how to call it.

Hope that helps and let us know how it goes.

Thank you.

Marc! BOOM! It worked… Your ROCK!

Thank you!

Hi @ajrenk,

Glad that we are able to help you.

Thanks

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.