jquery mobile - Center aligning text for Listview in JqMobile -
i want center align text in listviews of specific class in jquery mobile css...
i have following code...
<li><a href="index.html" data-icon="false" class="">home</a></li> or build new class using custom css...??
you need override following in custom.css
#mylist .ui-btn-inner { text-align: center; } while can add above in jqm.css; better approach keep customizations/overrides in separate css file.
for jqm 1.4.5 (latest of 26-nov-14)
.ui-listview>.ui-li-static { text-align: center; }
Comments
Post a Comment