How can I change the background-color of the slideshow?

  • Unknown's avatar

    Can I change the background-color on the slideshow?
    I tried using the following int the CSS editor:
    .slideshow-window {
    background-color: inherit;
    border: inherit;
    }

    and

    .slideshow-window {
    background: #fff;
    border: none;
    }
    I would like to make it either #fff or #000.

    here is my site front page: http://provenbrilliance.com/home-2/

    The blog I need help with is: (visible only to logged in users)

  • Hi,

    Sure, in the CSS editor, you can add something like:

    .slideshow-window {
    	background-color: #fff !important;
    }

    You shouldn’t use !important very often, but in a situation where there’s a lot of various rules in play, it can be a quick way to get something working for ya.

    Please let me know if you have any questions or need anything else. Have a great weekend!

  • The topic ‘How can I change the background-color of the slideshow?’ is closed to new replies.