Hi MANISHAK79,
As you know we do not provide source code, so you will not be able to modify the JCarouselModel.
You can add your logic in the view itself on the Model.Items property which will contain the products returned for a given data source type.
Or if you are more familiar with MVC you can create your own controller and add your logic there, have a view from which you can call a specific action from the JCarousel and passing an IEnumerable<ProductOverviewModel> which will be rotated in the carousel.
Please let us know if you need help with the second option with the action and the custom controller.
Best Regards!
Hi Philip,
You can achieve the center by applying the changes as shown below:
.bottomline .center {
width: 980px;
margin: 0 auto;
text-align: center;
}
The line from above in bold is the one that should be added.
.footer-disclaimer {
/*float: left;*/
}
.footer-poweredby {
/*float: right;*/
}
The two floats above in bold are the ones that should be changed(actually commented out).
All these styles you can find in the styles.css
Hope that helps!
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!
Hi MANISHAK79,
You can see the code for this social icons in Themes/ShopAll/Views/ShopAllCommon/FooterInfoBlock.cshtml file. You can modify it as you want.
Actually this is a share widget that shares the current page on the social networks. It is not a link to a specific facebook page or any other profile. It is a share widget.
Hope that helps!
Hi Philip,
I am glad you managed to achieve the centering.
Will think of implementing it in our theme.
Thanks!