changing appearance of slideshow

  • Unknown's avatar

    I’m using the Portfolio theme. The default slideshow styling is: .slideshow-window {
    margin-bottom: 20px;
    height: 410px;
    background-color: rgb(34, 34, 34);
    border: 20px solid rgb(34, 34, 34);
    border-radius: 11px;
    }

    When I change this in the css nothing happens, and the slideshow remains looking the same. I don’t want it to be black with a radius border. Thanks!

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

  • Unknown's avatar

    Hi there, I see your CSS is setting the background to white with no border. The following will do what you need. Replace what you have with the following. I’ve taken out some declarations that are not needed since they are not changing and added the !important attribute to the color and border none declarations.

    .slideshow-window {
        background-color: #FFFFFF !important;
        border: none !important;
    }
  • Unknown's avatar

    Perfect—thank you very much!

  • The topic ‘changing appearance of slideshow’ is closed to new replies.