I'm building a site which seems to work fine on all web browsers except the iPhone on a 3G network.

For some reason it is not being displayed correctly as if the CSS is not being parsed. As part of my investigation, I've tried the same browser (iPhone Safari) in a wifi connection and the page renders fine.

The page is written in classic ASP, what is interesting is that if I copy the rendered source from a PC browser and give it an extension of .htm, when you view this on the iPhone on 3G it renders fine. Same code, so is this something odd with classic ASP and 3G or possibly the mobile companies 3G network doing something to block specific content?

I have also tried this on a Nokia 3G Vodaphone network and it's fine.

So, I believe this confirms that the iPhone browser is not at fault, 3G networks are not at fault, the code is not at fault, so I can't seem to understand where the problem lies other than it being a problem with the specific 3G provider.

Perhaps someone has seen this before and has a suggestion/explanation that will help fix this issue?

link|improve this question
feedback

2 Answers

Your 3g Network Provider may insert a Proxy to serve webpages, e.g. for downsizing images. Also it might inject some JavaScript into the page. Such things could be the source of your issues. Some iPhone browsers let you view the source of a webpage, e.g. iCab mobile, so you could doublecheck what is delivered to the browser from your network provider.

Just a guess...

link|improve this answer
Thanks for this suggestion to help find out what is being returned. Looking at this, in some instances it seems to be removing spaces: <div id="tab_sub_container"> is in the delivered source as: <divid="tab_sub_container"> Which, if it's doing this randomly, I'm not suprised it's acting strange. Have you seen this before, if there a work around solution? – user779816 Jun 1 '11 at 18:18
@user779816 I have not seen this before. Probably the proxy tries to get rid of unnecessary whitespaces, which goes wrong in your case. Check the whole HTML for validity with the w3c CSS and HTML validators - there might be a glitch which causes the proxy to go wrong while the browser in general is more lenient. – marcus Jun 1 '11 at 18:35
feedback

After some investigation, it seems the solution to the probelm was not to use import when using external CSS files references, 3g doesn't like it for some service providers.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.