Reputation: 14370
I have the following jsfiddle http://jsfiddle.net/coderslay/Z78Gz/
In this the heading("Summary") is at the left… Even if i try aligning it at the center it comes at the left…. How to solve this?
Upvotes: 0
Views: 214
Reputation: 1056
If you want to align the "Summary" text, you have to use this css style :
h2 .ui-btn-inner {
text-align: center;
}
Upvotes: 2