Close

Background Image white

cicciuzzo
10 years ago
#3659 Quote
Avatar
  • 34
hi

why when I insert an image that has the trasparency  the plug-in adds the background white?

hi
Support
10 years ago
#3662 Quote
Avatar
  • Moderator
  • 1044
Hi CICCIUZZO,

We have identified this bug and already fixed it. You can integrate the fix by editing the Plugins/SevenSpikes.Nop.Plugins.AnywhereSliders/Themes/{Theme_Name}/Content/nivo/nivo.css, where {Theme_Name} is the name of the theme from which the css is loaded. In your case most probably will be DefaultClean, as shown below:

change from

.nivoSlider {
  position:relative;
  background:#fff url(loading.gif) no-repeat 50% 50%;
....
}

to

.nivoSlider {
  position:relative;
  background: url(loading.gif) no-repeat 50% 50%;
....
}

The change is removing the background #ff . After that clear your browser's cache and refresh the page.

Hope that helps!