javascript - How can i alter the HEIGHT of PANEL in jquery mobile? -
how reduce height of panel in jquery mobile?
$(function(){ $('#payable_panel').css('width','60%'); $('#payable_panel').css('height','30px'); }
i've tried using code, doesn't seem work!
in jqm panel min-height 100%. try following in style sheet.
.ui-panel{ min-height: 200px !important; }
here fiddle demo
Comments
Post a Comment