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

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -