Change slideshow background color and size

  • Unknown's avatar

    Hi!

    How would you suggest I remove the grey background from the slideshow on my homepage?

    http://joannagregoresdesign.wordpress.com

    I tried a couple things in the CSS but it doesnt work. Also, is there a way to make slideshow gallery sizes bigger?

    Thanks so much for your help!!
    :)

    Lea

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

  • Unknown's avatar

    Hi Lea, the sldeshow has a background and a border. Add the following to your custom CSS to get rid of the border and background. To override the slideshow window border and background color, we have to use the !important keyword. The second rule below turns the slideshow caption background transparent (none). I noticed it was showing up on some images and cutting off the bottoms of them.

    .slideshow-window {
        background-color: #fff !important;
        border-color: #fff !important;
    }
    .slideshow-slide-caption {
        background: none;
    }
  • The topic ‘Change slideshow background color and size’ is closed to new replies.