.nop-jcarousel .jcarousel-item .short-description {
max-height: 30px;
}
.nop-jcarousel .jcarousel-product-name {
max-height: 20px;
}
.block .list a {
border-top: 1px solid #c9c9c9;
display: block;
padding: 9px 10px;
position: relative;
transition: all 0.2s ease-in-out 0s;
}
.block .list a {
padding: 5px 10px;
}
.header-menu .sublist a {
background: rgba(255, 255, 255, 0.9) none repeat scroll 0 0;
border-bottom: 1px solid #c9c9c9;
color: #505050;
display: block;
line-height: 14px;
padding: 11px 15px;
...
}
.top-menu > li > .sublist-wrap > ul > li > .sublist-wrap {
max-height: 300px;
overflow: auto;
}
Hi Richard, This is what you can do for for the carousel:
.manufacturers-carousel .item-picture a {
border: medium none;
height: 150px;
position: relative;
}
.item-box .picture {
display: none;
}
.header-menu .sublist-wrap {max-width: 500px;}
Please check you 'OrderSummary.cshtml' view (you can find it here '~Presentation\Nop.Web\Themes\Motion\Views\ShoppingCart\OrderSummary.cshtml') for following code:
<div id="terms-of-service-warning-box" title="@T("Checkout.TermsOfService")" style="display:none;">
<p>@T("Checkout.TermsOfService.PleaseAccept")</p>
</div>
<div class="terms-of-service">
<input id="termsofservice" type="checkbox" name="termsofservice" />
<label for="termsofservice">@T("Checkout.TermsOfService.IAccept")</label>
<span class="read" onclick="javascript:OpenWindow('@Url.RouteUrl("TopicPopup", new { SystemName = "conditionsofUse" })', 450, 500, true)">@T("Checkout.TermsOfService.Read")</span>
</div>