Position "VM - Shopping cart" module

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Mon May 13, 2013 11:02 am
Reply with quote
Report this post
Hi,
I made the following change in templates.css: body {padding: 0 0 50px;}
In this way I eliminated the space at the top.
But now icon "VM - Shopping cart" moves too high. Where can I adjust the position of this icon? Here is a screenshot:
Image


One last question: In the module "VM - Shopping cart" you can show the quantity of products in the basket?
That would be great.
Example (created in Photoshop):
Image

Thanks for any help.

Regards,
Marco
User avatar
Fresh Boarder

GK User
Mon May 13, 2013 11:07 am
Reply with quote
Report this post
Hi,
can you give us url to your website ?
User avatar
Gold Boarder

GK User
Mon May 13, 2013 12:03 pm
Reply with quote
Report this post
Hi Konrad,
url website: ********

Thanks
User avatar
Fresh Boarder

GK User
Mon May 13, 2013 1:28 pm
Reply with quote
Report this post
Please try go to js/gk.scripts.js and find:
Code: Select all
if(scroll > 70) {
               if(scroll < max - 122) {
                  final = scroll - 50;
               } else {
                  final = max - 172;
               }
            } else {
               final = 20;
            }

and change it to:
Code: Select all
if(scroll > 70) {
               if(scroll < max - 122) {
                  final = scroll;
               } else {
                  final = max - 122;
               }
            } else {
               final = 20;
            }
User avatar
Gold Boarder

GK User
Mon May 13, 2013 1:54 pm
Reply with quote
Report this post
Yes It works great, thanks so much.

Regarding the possibility to show number products in cart, you think it's possible? That would be great.

Thanks

P.S.
Please you can remove website URL in my post?
Thank you very much
User avatar
Fresh Boarder

GK User
Mon May 13, 2013 2:23 pm
Reply with quote
Report this post
About possibility to show number products in cart unfortunetly it is extra customization and we don't support it.
User avatar
Gold Boarder


cron