Css Help

I would like to change the background color of the banner box to match the color of the banner. I have tried adding some css to a few different places with no luck. Can any one point me in the right direction? Attached is a screen shot of the area I am looking to change.

ridetech.com/dev is the url

No screen shot. Generally, you would use a property like:

background=color: inherit;

to get the same background as the enclosing container.

The image has a red background and I would like to make the background match

Capture.JPG

The color is #ae0202 that I am trying to get the background to be.

You might try setting the "user class" property in the block. Then use that class to set the background.

.my_class {
  background-color: #your_color_code;
}

I was missing the styles.less step.

Thanks for all the help!!