For future NSP GK5 Updates

Support desk for Multipurpose Quark Theme
GK User
Sat Jul 25, 2015 9:56 am
Hello,

I tried to post this in the NSP GK5 thread of this forum but it kept taking me back to the “Buy Now” page even though I’m logged in. So instead I am posting it here.


Regarding the standard mode of NSP

In these days of mobile devices, quick access and one page layouts do you have any update plans for adding…

1: A “Load More Items” button/function for this extension?

2: An option to control the amount of columns and rows in different desktop/mobile views? E.g. 4 columns in 1 row for desktop view, but 2 columns in 2 rows for mobile view.

Kind regards
User avatar
Senior Boarder

teitbite
Sat Jul 25, 2015 2:31 pm
Hi

1. You can show articles per couple of pages. NSP has a mobile swipe functionality to change between them.

2. Number of columns is already changed depending on the device width, but it cannot be configured at the moment and I'm not sure if it's necessary, it's easier to manage options without setting this as well.
User avatar
Moderator

GK User
Sat Jul 25, 2015 4:50 pm
Ok.

I will make a jquery instead for nsp to only show in 2 columns for mobile view.

Thanks Teitbite
User avatar
Senior Boarder

teitbite
Tue Jul 28, 2015 9:40 am
Hi

I'm afraid I do not understand. Can You please explain what do You mean by "I will make a jquery instead for nsp to only show in 2 columns for mobile view."
User avatar
Moderator

GK User
Fri Jul 31, 2015 8:31 am
I mean creating a jquery for mobile view with a column width of 50% instead of 100%.

Code: Select all
@media (max-width: 640px) {
.nspArtPage .nspArt {
    width: 50% !important;
}
}


The only problem when I do this is that if one of the above articles is a bit longer than the other, then sometimes it pushes the article benieth it too far down. I guess this is out of your support range but maybe you can give me a hint on how to stop that from happening.
User avatar
Senior Boarder

teitbite
Fri Jul 31, 2015 6:23 pm
Hi

Och. There is no need for jQuery. It can be done with a small css like:

Code: Select all
@media (max-width: 640px) {
.nspArtPage .nspArt:nth-child(2n+3) {
    clear: both !important;
}
}
User avatar
Moderator


cron