Ok, let's take a second to think about it...
First off you'd have to make a special theme/layout designed for the handheld's browser
(This you've already done apparently)
Then that part is done
Now you'll need to use php to control the output of the site based on the browser. Mobile phones use a special header section (for lack of a better phrase) that let's any website know it's a mobile phone so it either output's the site like normal, or tells the phone that it can't read the site. You could find that code and show me and we can tweak it and reverse it or...
We need a dev for integramod to tell us which file(s) control the whole theme system so we can add the php to it. Might be class_template.php or something in includes/
or...
we could use a "switcher" so that it will switch the style automatically.
Pros and Cons...
ProsThis can switch the user to a stylesheet automatically, but it set's a cookie by default and I don't know if phones can use cookies.
This is all done automatically and "behind the scenes"
ConsLike I stated before, i don't know if phones can handle cookies
Using this method the user would have to click a link to change the stylesheet
Example: Using this method you could add a link in your header to automatically switch between several stylesheets flawlessly and quickly. It even set's a cookie that lasts a year (can be changed) and in the future that user would automatically see the stylesheet he chose last.
Now, I guess you could set up a subdomain like "mobile.yoursite.com" and have that automatically redirect to your site and choose the mobile stylesheet.
There are so many "external" ways to do this but because of my lack of knowledge of what file(s) to change within integramod I cant play with it further.
If I knew all files that dealt with controlling the theme I could prob build you a mod to use.
Anyways below are several links for you to look at to make your little "switches"
Most of these are very simple and only take a few lines of code.
http://www.contrastsweb.com/switcher/v1/http://www.alistapart.com/stories/phpswitch/http://alterior.net/archives/000021.phpThis all easily takes care of the switch, and that's half the battle, we just need to find a way to make it read if the browser is phone or not...
ps
A little example of code for the subdomian (mobile.yoursite.com) could be like...
This was copied from
http://www.mikeindustries.com/blog/arch ... e-friendlyAnd that's about all I can do/think of using without knowing the files we need for integramod integration