Close

Profile: Support

Avatar

User posts

11 years ago

Hi,

Thank you for your activity.

The product share button is visible and styled appropriately since 2 weeks ago. You can update the theme to get the latest version.

Thanks again!

11 years ago

UserThomas wrote:
It has to do with the custom.css file you have been helping me on.  The browser only accepts some of the settings.

Ex: it does accept the color changes but it does not accept the code to move the right column to the left side.


Hi Thomas,

I found out what the issue is with IE 8. The reason is that IE 8 does not have support for media queries and thus all the styles in the custom.css which are wrapped in a "media screen and .." are not recognized. You can fix this by including the css with the @Html.AddCssParts html helper in the Head.cshtml view or by placing the styles which are wrapped in the "media" query in a Themes/Allure/Content/css/ie8-fix.css file.

So if you have the following in the custom.css

@media screen and (min-width: 1001px){
.product-details-page .overview {
margin-left: 620px;
margin-right: 0;}
}
@media screen and (min-width: 769px){
.ui-tabs, .gallery {
float: left;}
}
@media screen and (min-width: 769px){
.product-details-page .overview {
float: right;}
}


place the following in the ie8-fix.css

.product-details-page .overview {
margin-left: 620px;
margin-right: 0;
}

.ui-tabs, .gallery {
float: left;
}

.product-details-page .overview {
float: right;
}


Hope that helps!

Best Regards!

11 years ago

jmbusquets wrote:
The problema still exist when using the native Android browser., If I use Firefox, it works fine.


Hi jmbusquets,

We were finally able to reproduce the issue on a native Android browser and fix it. Can you please download the theme again from your My Downloads section and replace the following files with the ones from the downloaded package:

Themes/Smart/Content/css/480.css
Themes/Smart/Content/css/styles.css

Please let us know how it goes!

Best Regards!

11 years ago

UserThomas wrote:
I'm not sure where to post this but I am looking to change the jcarousel that is displayed on the products page.

When I have more than 5 thumbnails pictures, I want the scrolling affect to apply and not move the 6+ pictures to just get moved down to a 2nd row.

Thanks!


Hi Thomas,

You just need to enable the Nop Cloud Zoom plugin and check the "Enable Picture Thumbnails To Be In JCarousel:" option.

Best Regards!

Bugs
11 years ago

Topic for reporting any Nop Sales Campaigns problems.

IMPORTANT NOTE: There is a known issues with installing new plugins in nopCommerce. Please read this post for more information how to resolve it.

11 years ago

Help make Nop-Templates products better. Share your ideas or feature requests related to the Nop Sales Campaigns plugin for nopCommerce.

11 years ago

Topic for general discussion regarding Nop Sales Campaigns

11 years ago

Hi Rob,

As far as I see on your home page the featured categories are of the correct size. The images are scaled proportionally so if the setting is set to 310 and the images is wider than 310, the picture will be scaled to 310 wide while keeping the same ratio between the width and height.

Please let us know if you need any further help or information.

Best Regards!

aswaaq wrote:
Hi There,

i have tried this already. but when only 1 product is available, then this will not work for full row bottom border as the bottom-border is given on itembox, not the grid.

can you please give me some other solution to get the desired result.


thanks


Hi,

Can you try to insert the following in the admin -> plugins -> nop electronics theme -> settings -> custom head styles :

@media screen and (min-width: 981px) {
.product-grid .item-box:nth-child(3n+1):before {
content: " ";
border-bottom: 1px solid #eee;
display: block;
width: 500px;
}
}


This will display a border before every 4th product.

Hope that helps!

Best Regards!

11 years ago

UserThomas wrote:
It has to do with the custom.css file you have been helping me on.  The browser only accepts some of the settings.

Ex: it does accept the color changes but it does not accept the code to move the right column to the left side.


Hi Thomas,

We have replied to your forum post here

Please do not duplicate forum posts.

Best Regards!