One tip is to put the following in the WebHandler procedure, ProcessLink method, before the parent call;
If self.mobile
self.site.HtmlCommonStyles = clip(self.site.HtmlCommonStyles) & self.AddStyle('mymobile.css')
self.MetaHeaders = '<meta name="viewport" content="user-scalable=no, width=device-width" />'
end
self.mobile is = 1 if the device is a mobile device. you can use this elsewhere as well. The mymobile.css is a file of yours, containing styles etc for mobile devices.
There's a lot more mobile stuff coming, but these are hints in the right direction.
Cheers
Bruce