0

I am trying to set the background color to transparent for this page:

.page-id-714 .container-fluid { background-color: transparent; } 

But I do not seem to be able to address the correct class or item. Can anyone point me in the right direction?

2

2 Answers 2

2

You are setting it on the wrong class. You need to set it on

.top-stripe { /* Current, it's set to background-color: #fbfbfb; */ background-color: transparent; } 

Make sure you declare the above after the selector which I've shared below, else you need to make your selector more specific, or you need to use !important which I would not recommend, or better, you remove top-stripe from that declaration altogether.


Here's the declaration on your webpage..

enter image description here

Sign up to request clarification or add additional context in comments.

Comments

0

Try this:

.top-stripe { background-color: transparent!important; } 

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.