I have a div which I want to target to change the background colour.
This div lives in one container (main) and the target div lives within another (footer)
So I want to use the div promo to target footer-inner like so:
Demo: https://jsfiddle.net/yeLpnu36/
<main>
  <div class="promo">
    <p>
    stuff here
    </p>
  </div>
</main>
<footer class="my-footer">
  <div class="footer-inner">
  <p>
  change background of this div from promo
  </p>
  </div>
</footer>
I have tried things like:
.promo > .footer-inner,
.promo + .footer-inner,
.promo ~ .footer-inner {
  background: yellow !important;
}
But with no success.
Any ideas how I can change the background colour of footer-inner using promo?
Thanks
