Reputation: 1174
How do I align the text of the header to left align in jQuery Mobile?
I have specified it like the following.
<div data-role=header data-theme="b">
<h1 align="left"><font size="1px"> My Contacts -> Doctor </font></h1>
</div>
but it is not appearing. I just wanted to align the text in the header
, and I also need to resize the text size.
Upvotes: 0
Views: 4187
Reputation: 381
Maybe this can help you:
<div data-role=header data-theme="b" style="text-align: left;font-size: 10px;">
My Contacts -> Doctor
</div>
Upvotes: 3