Close

Profile: Deni

Avatar

User posts

11 years ago

cheerfulcalf wrote:
Should it work with that plugin http://www.nopaccelerate.com/
Because on my site images and css is nor working http://manoroletai.bykovas.lt/margi (not works in IE and Chrome, but works in Firefox). Do you know anything about this compatibility issue?


I far as I can see that plug-in includes many inappropriate styles from this file: Plugins/XcellenceIT.Plugin.Solr.Products/Content/nopaccelerate-styles.css .

You can comment its content and your problems will be solved!

Bugs
11 years ago

atzmonca wrote:
HI
the thems not working on IE8
in chrome look good
http://shop320.allstoreweb.co.il/


Hi, ATZMONCA !

This problem is almost fixed and working version will be deployed ASAP.

Bugs
11 years ago

JnEng wrote:
When hovering over the product on the actual product page, the zoom window is over the product info

http://raceenergy1.azurewebsites.net/go-puck-5x


The CloudZoom plug-in has settings that allow you to change the place where the zoom window appears. It can be right, left, top, bottom or inner.

11 years ago

JnEng wrote:
I loaded the images and the slider is HUGE!! How do I change the slider size?

http://raceenergy1.azurewebsites.net/


Hi, JNENG!

The solution for you is to upload images with smaller height (I guess you meant that it is too big in height). The slider is full-width and it preserves the proportions.

P.S. We really liked your slider, because 3 of us drive Honda!

Bugs
11 years ago

MattyLB wrote:
Hi Matt,

You can remove the default styling for the Alicante theme from this file:
SevenSpikes.Nop.Plugins.ProductRibbons\Themes\Alicante\Content\Ribbons.css

Simply delete or modify the .product-ribbon class definition.



Thanks for the suggestion. When I tried this, it appears to force the product image away in order to display the ribbon. Am I missing something or can you suggest a class definition that let's me add a ribbon in a corner without removing the product I image? Thanks


Yes, deleting everything is not quite right. You need to leave this chunk of code:

.ribbon-wrapper {
    height: 100%;
}


Thanks!

Hi, IMPRINTABLESWAREHOUSE

You have to change the logic in \Plugins\SevenSpikes.Nop.Plugins.MegaMenu\Views\MegaMenuCategoryMenuTemplate.InfiniteCategories.cshtml. You must replace this code

  

<li>
            <a href="@Url.RouteUrl("Category", new { SeName = subCategory.CategoryModel.SeName })" title="@subCategory.CategoryModel.Name">@subCategory.CategoryModel.Name</a>
            @if (subCategory.SubCategories.Count > 0)
            {
            <ul class="sublist">
                @CreateSubLists(subCategory.SubCategories, categoriesCountSetting, subCategory.CategoryModel.SeName)
            </ul>
            }
        </li>


with this one

<li>
            @if (subCategory.SubCategories.Count > 0)
            {
            <a href="@Url.RouteUrl("Category", new { SeName = subCategory.CategoryModel.SeName })" title="@subCategory.CategoryModel.Name">@subCategory.CategoryModel.Name</a>
            
            <ul class="sublist">
                @CreateSubLists(subCategory.SubCategories, categoriesCountSetting, subCategory.CategoryModel.SeName)
            </ul>
            }
            else{
            <a class="noBackgroundClass" href="@Url.RouteUrl("Category", new { SeName = subCategory.CategoryModel.SeName })" title="@subCategory.CategoryModel.Name">@subCategory.CategoryModel.Name</a>
           }
        </li>


Now you can remove the background via noBackgroundClass:

.noBackgroundClass {
     background-image: none;
}

I hope this helped!