 
        Hi nopmstr2014,
There is no fixed dimensions for the slider as it is responsive, meaning that it will auto scale proportionally. So it will stretch to the whole width of the screen and it will be auto scaled on height proportionally. The way to reduce the height is either to reduce the width so that when resized the slider will be with less height, or the other way is to edit your image to be less high.
One approach you can try is to change the widget zone of the slider to be "home_page_top" . Thus the slider will be placed in the main column on the home page and will not stretch to the whole width of the site.
Another way is to set width of the slider via css and it will be resized to that size. So for example if you set a width of the slider wrapper, i.e. 
.home .slider-wrapper {width: 1600px; margin 0 auto;} for the Nitro theme your slider will be resized to 1600px wide and thus the height will be smaller.
The third option is to change the proportion of your image, so that when resized proportionally the height is not so much.
Hope that helps!
Hi lftalero,
I am curious to see why the approach I mentioned in my last post did not work, because when placing your css file right after the NopCssFile files, your css will be placed after these files. The same as if you place your css before the closing <head> tag as you did. So if you can send us a link to see this scenario will be great.
As both approaches are very similar it is absolutely fine and correct to place your css in the head section after all nop css files, so that you can override any css rules and styles in your file.
Hope that helps!
Hi LFTALERO,
When you use Html.AppendCSSFileParts this will insert the css file in the beginning of all css files already added. So that is why when you use Html.AppendCssFilePart after the the line for the Alfresco styles, it gets added in the beginning before the styles.css. So you should either place your line of code in the before all other files in the Head view or use Html.AddCssParts which will add it at the end.
The best way to add your css file and be sure that is rendered always at the end you can follow the approach from below:
In your _Root.Head.cshtml view:
@Html.NopCssFiles(this.Url, ResourceLocation.Head)
<link type="text/css" rel="Stylesheet" href="@Url.Content("~/Themes/Alfresco/Content/css/custom-user-styles.css")" />
@Html.Widget("head_html_tag_after_css_files_alfresco")
Hi Tredegar,
In order to restore your database to a certain time, you need to have a backup created at that time.
If you let us know what is exactly the issue you are having after installing the theme we will be able to help. If you need to hide the bestsellers from the home page, you only need to go to admin -> configuration -> setting -> catalog setting and uncheck the "Show bestsellers on home page" option. You can also change the categories image size from admin -> configuration -> settings -> media settings. There is really no need to restore your database, but just adjust the settings.
Looking forward to your reply!
Hi ezzat2k,
Can you try the following approach using the js method. Just change the js function as shown below:
<script type="text/javascript">
$(document).ready(function () {
if ($.isMobile())
{
$('.html-widget').remove();
}
})
</script>
Hi godinamo,
You are right that the check is missing. But I think it will be best to use the Model.BlogEnabled as the rss is for the blog. We will add a check in our themes about that.
Thanks for the feedback!
Hi ezzat2k,
You see the html widget because when you turn the tablet in landscape mode, the viewport gets bigger than 768px and according to the media query it will be displayed.
So you have two options in general:
1. Remove the html widgets on mobile devices regardless the width of the display. Just open the _Root.Head.cshtml from your theme or from the general Views folder of nopCommerce and add the following:
in the <head>
Html.AddScriptParts("~/Plugins/SevenSpikes.Core/Scripts/SevenSpikesExtensions.js");<script type="text/javascript">
$(document).ready(function () {
if ($.isMobile())
{
$('.html-widget').hide();
}
})
</script>
<div class="html-widget">
@Html.Raw(htmlwidget.HtmlContent)
</div>
@media all and (max-width: 768px) {
    .html-widget {display: none;}
}Hi NOPMSTR2014,
The favicon used in nopCommerce is the one in the root folder. We do not replace it in any way in our theme. I suppose that you should clear your browser's cache and hard reload your site,so that the new favicon gets loaded.
Please let us know if the issue still exists.