Full screen height in Kwicks

243 Views Asked by At

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

There are 1 best solutions below

1
On

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.