Gallery Widget Change Background colour
-
Please help!
I’m trying to get rid of the black box around my gallery slideshow on the front page under ‘Supported by’I have tried
.entry-content .slideshow-window {
background: #FFFFFF;
border: none;
}and
.slideshow-window {
background: #FFFFFF;
border: none;
}nothing seems to work.
Thanks in advance.
CheersThe blog I need help with is: (visible only to logged in users)
-
Try adding this:
div.slideshow-window { border: none; }Or this if you want to keep the border spacing:
div.slideshow-window { border-color: #fff; } -
Both solutions should work, but the one I posted doesn’t require using “!important” which should (generally) be avoided when possible.
- The topic ‘Gallery Widget Change Background colour’ is closed to new replies.