Exploring Sencha Touch for the first time and running into challenges with styling images (such as centering) and text (like adjusting size/color).
Can anyone guide me on where to add style tags?
Sample item below:
// The following represents a simple HTML structure for the home page
{
title: 'Home',
iconCls: 'home',
cls: 'home',
scrollable: true,
style: 'text-align:center', // Centering text
html: [
'<img height=260 src="http://upload.wikimedia.org/wikipedia/commons/4/4a/Logo_2013_Google.png"/>',
'<h1>Welcome to the Demo HTML5 App</h1>',
"<p>Built with Sencha Touch</p>"
].join("")
}