Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #27834

    I’m using a Portfolio Slider to show my Clients ( http://roberthunecke.com/redesign/ ). I try to change the Background Color of it’s entries from #fcfcfc to any other color. Using Insepector Tools I found

    Code:
    content-slider .slide-image {
    }

    to be responsible.

    Using Quick CSS and

    Code:
    content-slider .slide-image {
    background: #ffff00;
    }

    doesn’t change anything, but works great as long as I’m using Inspector Preview. Why is that and how can I change the Background Color instead?

    Thanks,

    Robert

    PS: using images without alpha is not an option.

    #135523

    Hi,

    Please try this:

    .avia-content-slider.avia-content-slider-active.avia-content-slider2 {
    background: red;
    }

    .avia-content-slider.avia-content-slider-active.avia-content-slider2 .slide-image {
    background: red !important;
    }

    Regards,

    Ismael

    #135524

    Works like a charm. Thanks a lot!

    Regards,

    Robert

    #135525

    Hey,

    Glad it worked. :)

    Cheers,

    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘[Portfolio Slider] Change Background Color of Slider Entries’ is closed to new replies.