Close

Profile: ZornitsaIvanova

Avatar

User posts

6 years ago

Hello JacquieK,
Thank you for mentioning this. We decided to add this feature to the theme. As soon as we are ready we will text back to inform you.

Bugs
6 years ago

Thank you very much JRon for reporting this issue. And yes it was something else. It was coming from another plugin in which was missing "img {max-width: 100%}" style. So the images which are wider were expanding the body and causing the horizontal scroll. We have fixed it.
Thank you once again. :)

6 years ago

Hello,
Unfortunately the attributes in the ajax cart work in the same way as the nopCommerce attributes (at the product page) because we are using the same structure and logic. So this type of change have to be made in the nopCommerce system also. It isn't just the markup and the scripts, but the whole logic in the system. So we will recommend you to contact NopCommerce support team first.

Bugs
6 years ago

Hello Darius,

Thank you for reporting this issues. There are available updates for the Prisma theme and the AjaxCart plugin with the fixes included.




Hello joster,
Probably there was some cache at your site. There is no reason why this should not work. Please try again to put the styles into 'Custom Head Styles' and clear the cache from the administration and from the browser. Because if you leave them in the styles file in plugin when you update the plugin the changes will be lost.
Hope that will help you.

Hello joster,
The right-column layout is by design.
If you insist on having it at left go at the theme settings in the administration and there you will found section named 'Custom Head Styles'. Paste the following there:

.blog-pages-body .side-2 {
    float: left;
}
.blog-pages-body .center-2 {
    float: right;
}

Hope that will help

6 years ago

In practice you can, but it is not in order. Maybe (there is a huge chance) some of the plugins to  look 'broken' or not work properly so it is not recommendable.
If you consider upgrading to newer version you can wait till October when we will upgrade to version 4.0.

6 years ago

Hello,
There are two options:
1. In case you want to get the view from our demo you have to update your theme with the latest version.
Or:
2. On the other hand mostly of your product pictures are landscape. In this case I will advice you to make them fill the full width of the window. This can be achieved with adding some custom css to the 'Custom Head Styles' section in the administration. Just paste the following in it :

.gallery .picture {
    width: auto;
}


Hope that will help you

6 years ago

Can you please submit a ticket in order to make further research and see why it does not work.

6 years ago

Hello,
There are not many options with tables in mobile. The most acceptable and easiest solution which I can suggest you is to add container in the markup which will hold the table.
You can do that from the content editor Tools > Source code. Find where the table opening tag (<table>) and right before it paste the following :

<div style="max-width: 100%; overflow-x: auto;">

Then find the table closing tag (</table>) and right after it paste the following :
</div>


Hope that will help you.