MG 2.1 Overlay background colour change

Hi there

Can anyone tell me how I can change the overlay background colour that is currently black with opacity as attached. I want to make it a blue colour to fit in with everything else more

Thanks!
 

Attachments

  • overlay.webp
    overlay.webp
    24 KB · Views: 10
The browser inspector is the easiest way to identify specific elements.

1597847043412.png


The class is .itemList-itemOverlay, so you would add this to the extra.less template:
CSS:
.itemList-itemOverlay
{
    background-color: orange;
}


More tips and advice here on how to customise stuff.
 
Top Bottom