Gallery Block overlay

Permalink
Does anyone know how to change the colour of the overlay background in the marketplace Gallery block.

I've been through all the css, and all the view file and just can't work it out.

Currently it overlays in a translucent black, i'd much prefer it to be white?

If someone can point me in the direction i'm sure i can work out the rest

THANKS

olay
 
mario replied on at Permalink Best Answer Reply
mario
It's being inserted directly into the html. I think it's being drawn off the core app interface elements but I'm not sure.

try adding this to your css:

#jquery-overlay {
   background-color:#FFF !important;
}


it's a definite hack and may interfere with the editor's elements, i'm not sure...

you can adjust the opacity in the usual way. just make sure to add the !important; to the end to override the embedded styles. this doesn't always work on some old browsers by the way.
olay replied on at Permalink Reply
olay
– this worked!

Many thanks
KayO replied on at Permalink Reply
This works nicely. Thanks