Prevent Scaling on Mobile Devices

I recently ran into this issue while trying to optimize a website for display on an iPad. The device was scaling my content and I did not want it to. The solution is to use the Meta Viewport Tag. Here is the fix if you run into the same issue. <meta name=”viewport” content=”width=device-width,maximum-scale=1.0″ /> The … Continued

iPad shrinks my background

I recently ran into this issue myself on a site that I was working on. The site was using quite a large image for the background (3000px x 1200px). The background worked fine on normal browsers, but did not display correctly when viewed on a mobile browser (ie mobile Safari for the iPad). The Problem … Continued