I'm trying without success to find the css to change the yellow background color in
block-promo-home-t-shirt. This came in with the sample data load.
I've looked everywhere (except where I can find it).
Can someone help me locate where this css is so I can override in a child theme, please?
Magento 2.4.x
Thanks.
Solved! Go to Solution.
To apply a CSS background color, you need to follow the syntax example below:
background-color: value;
The default value for this property is transparent. You can change it using the name, RGB or HEX value of the color you choose:
body {
background-color: rgb(0, 255, 0);
}
To apply a CSS background color, you need to follow the syntax example below:
background-color: value;
The default value for this property is transparent. You can change it using the name, RGB or HEX value of the color you choose:
body {
background-color: rgb(0, 255, 0);
}
Thanks - I thought I'd looked this up and tried this, but somehow - I missed it.