Close

Change the box shadow around slider

[email protected]
9 years ago
#8262 Quote
Avatar
  • 12
I would like to remove the box shadow around the
slider. I have tried to edit in the Presentation\Nop.Web\Plugins\SevenSpikes.Nop.Plugins.AnywhereSliders\Themes\DefaultClean\Content\nivo\nivo.css

i can not see any changes in the slider on the pages.
hristo
9 years ago
#8268 Quote
Avatar
  • Moderator
  • 172
[email protected] wrote:
I would like to remove the box shadow around the
slider. I have tried to edit in the Presentation\Nop.Web\Plugins\SevenSpikes.Nop.Plugins.AnywhereSliders\Themes\DefaultClean\Content\nivo\nivo.css

i can not see any changes in the slider on the pages.


Hi,
the file you are trying to edit is correct (Plugins\SevenSpikes.Nop.Plugins.AnywhereSliders\Themes\DefaultClean\Content\nivo\nivo.css),
check it again and look for this piece of code:

.nivoSlider {
    background: url("loading.gif") no-repeat scroll 50% 50% #fff;
    border-radius: 5px !important;
    box-shadow: 0 1px 5px 0 #4a4a4a;
    margin-bottom: 10px;
    overflow: hidden !important;
    position: relative;
}

... and delete the "box-shadow" line. This will remove the shadow around your main slider.
Regards,
Hristo Gospodinov
Nop-Templates.com
[email protected]
9 years ago
#8270 Quote
Avatar
  • 12
hristo wrote:
I would like to remove the box shadow around the
slider. I have tried to edit in the Presentation\Nop.Web\Plugins\SevenSpikes.Nop.Plugins.AnywhereSliders\Themes\DefaultClean\Content\nivo\nivo.css

i can not see any changes in the slider on the pages.

Hi,
the file you are trying to edit is correct (Plugins\SevenSpikes.Nop.Plugins.AnywhereSliders\Themes\DefaultClean\Content\nivo\nivo.css),
check it again and look for this piece of code:

.nivoSlider {
    background: url("loading.gif") no-repeat scroll 50% 50% #fff;
    border-radius: 5px !important;
    box-shadow: 0 1px 5px 0 #4a4a4a;
    margin-bottom: 10px;
    overflow: hidden !important;
    position: relative;
}

... and delete the "box-shadow" line. This will remove the shadow around your main slider.
[email protected]
9 years ago
#8271 Quote
Avatar
  • 12
Ok thank you it works now
But i did try many times where it did not work.