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?
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?
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..