Category Scrolling not possible beyond certain number of categories

Posted about 6 years ago by Tino

Post a topic
Answered
T
Tino

Hi, while creating numerous categories and viewing the front end design module, I noticed that you cannot scroll down further than a specific amount of categories. (View Image below)


image


It looks like the scrolling javascript that you implemented in the individual categories (class="mCSB_dragger" or whatever it is) does not load in this <div> container. I've tested to see if it there was anything on my end that needed fixing, but after inspecting your source code it looks to be an error from your plugin.


Can you please fix this for your next update?


Thanks


0 Votes

T

Tino posted about 6 years ago Best Answer

The following code seems to have done the job:


 

.fpd-module[data-module=designs].fpd-head-visible .fpd-scroll-area {
    height: calc(100% - 145px) !important;
}

 It would be great if you can make this adjustment on your next update if you see fit. Thanks

0 Votes


2 Comments

Sorted by
T

Tino posted about 6 years ago Answer

The following code seems to have done the job:


 

.fpd-module[data-module=designs].fpd-head-visible .fpd-scroll-area {
    height: calc(100% - 145px) !important;
}

 It would be great if you can make this adjustment on your next update if you see fit. Thanks

0 Votes

T

Tino posted about 6 years ago

 

This CSS code seems to be the problem too.

 

.fpd-module[data-module=designs].fpd-head-visible .fpd-scroll-area {
    height: calc(100% - 35px);
}

 

0 Votes

Login or Sign up to post a comment