The only thing you need to do is wrap your h1 tag in a div tag that is not a data-role = "header" div header. Your code should look like this:
<section id="firstpage" data-role="page"> <div data-role="header"> <div> <h1>Grade Calculator</h1> </div> </div> </section>
You do not need to align the text because the div that wraps the h1 tag disables jQuery. To give some margin to the text, since everything will be left, all you have to do is add CSS and look like this ...
[data-role="header"] h1 { margin-left: 10px; }
This will give you the left edge on the left.
source share