Hi Marko,
Can you provide me access to live site, to inspect the code and to tell you what to do.
Please excuse us for the delayed respond.
This is what you must do to achieve the wanted result:
Go to 'administration --> Plugins --> 7Spikes Themes --> Nop Urban theme --> Custom head styles' and add the code below:
.home-page-category-grid.banner-included .item-box .title.small-title strong {
width: 102px;
}
.home-page-category-grid.banner-included .item-box .title.small-title a {
padding-top: 70px;
}
.home-page-category-grid .title.small-title.odd a strong::after {
display: none;
}
Please pay attention to the bold passages. They might have different values - it's your decision (if you want to place the title lower, just add more padding-top). One more thing, keep in mind that these changes will apply on the other similar categories, so if this does not satisfy you please write back and we will try to solve the problem.
Hi Helger,
You can change the overlay background color if you add the following code in the 'Custom head styles' section (which you can find in administration --> Plugins --> 7Spikes Theme --> ArtFactory Theme):
.product-grid .item-box .description-wrapper, .product-list .item-box .description-wrapper {
background-color: rgba(255,255,255,0.5);
}
.flyout-cart {
display: block;
position: fixed !important;
top: 0;
bottom: 0;
right: -320px;
z-index: 1030;
width: 320px;
.
.
.
}
Please find the file '~Themes\Urban\Views\Shared\_ProductBox.cshtml' and once you have opened it, change the 'div' with class 'buttons' the way it shown below:
<div class="buttons">
<div class="vertical-centering">
<div class="buttons-inner-wrapper">
@if (!Model.ProductPrice.DisableBuyButton)
{
var addToCartText = T("ShoppingCart.AddToCart").Text;
if (Model.ProductPrice.IsRental)
.
.
.
<a class="buttons" href="@Url.RouteUrl("Product", new { SeName = Model.SeName })">
<div class="vertical-centering">
<div class="buttons-inner-wrapper">
@if (!Model.ProductPrice.DisableBuyButton)
{
.
.
.
.product-grid .item-box .buttons::before {
display: none;
}
Hi Objects,
The difference comes from the original design. By design when the products are in list view, when the customer hover over it the buttons shows with transparent background all over the image. So in case you don`t like it, I can help you with suggestion but I need to know what you want to accomplish, and how to place the elements in the item?