0

how to make Kwicks height to 100%? I would have full screen slider.

demo: http://devsmash.com/projects/kwicks/2.2.x/examples/responsive

1 Answers1

0

You should give Kwicks height 100 %

 <script type='text/javascript'>
        $().ready(function() {
            $('.kwicks').kwicks({
                maxSize : '100%', 
                behavior: 'menu'
            });
        });
    </script>

In case maxSize 100% didnt work use Size 100% and try. Hope it will work.

Mayank Bothra
  • 93
  • 1
  • 1
  • 8