Mailchimp responsive HTML - responsive-design

Can anyone help with HTML fix for Mailchimp.
I have created a code, that is responsive, and when I test across devices, on some mobile (Android , Nexus phone) devices e-mail is, when opened zoomed in by default so I need to pinch zoom out so I can see whole newsletter, while it is good on iPhone (native mail app, gmail app) and on Android gmail app.
I have already added
-webkit-text-size-adjust:100%
and
<meta name="viewport" content="width=device-width"/>
Thanks in advance

Specify initial-scale=1.0 in the viewport meta tag. For example:
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>

Related

How to display my react application as desktop view on mobile?

I know I can use media query in order to make the design responsive. but I do not want to do that now. what I would like to do is when the user load the app on mobile, my react app detects that and display the app as desktop view on mobile.
You can change the meta link in the index.html to display a desktop version:
<meta name="viewport" content="width=1920">
Instead of the responsive version which is:
<meta name="viewport" content="width=device-width, initial-scale=1.0">
you will find index.html in the public folder

Website is not responsive on actual cell phones, but responsive when viewed in inspector tools

This website...
http://www.collegefundingremedies.com
is responsive on my computer, and displays correctly when I Inspect Elements through Google Chrome and click on the mobile the different mobile views, but when I open the website on an actual mobile phone, everything is unaligned and badly formatted. What am I missing here?
I have the...
<meta id="viewport" name="viewport" content="width=device-width, initial-scale=1">
in the index and media queries set up, so I'm not sure what's going on at all. Please help.

Have you ever faced responsive issues on mobile while your site is responsible on browser?

I was facing this issue. When I change browser size, it works well but when viewed on real device, it was not responsive and instead showed the shrink-ed version of webpage.
Here comes the "viewport meta tag", which is very important. Adding this below mentioned one meta tag will resolve the issue.
<meta name="viewport" content="width=device-width, initial-scale=1">
For more details view the below tutorial:
http://webdesign.tutsplus.com/tutorials/quick-tip-dont-forget-the-viewport-meta-tag--webdesign-5972

How to use Kendo-zoomable view and AngularJS

I have an AngularJs mobile web application.
I use this meta tag to give the application its mobile look and feel.
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no" />
But in my application, I have an IFRAME where I want to display some content that is so big, that I would like for the user to be able to zoom on the content.
According to this: Allow zooming within iFrame but not on page in iOS that is not possible when using the above meta tag.
But then I discovered this component from Kendo: http://demos.telerik.com/kendo-ui/mobile/view/zoomable.html
Does anyone know how to use it together with AngularJS?
(I have a library called angular-kendo.js that I use for datepicker and combobox)
I got no replies.
So I resolved my problem by using a library called hammer.js.
Here is a good article: http://creativedroplets.com/html5-and-multitouch-hammer-js/

Websites for mobile browsers: CSS and meta tags

Some sites do not work in mobile browsers. Often this is caused by specific CSS attributes or missing HTML meta tags.
For example the HTML tag <meta name="viewport"...> is required for correct scaling of the page. Or the CSS attribute overflow: scroll; in a div on the page does not work on iPad as expected.
What specific Tags/Attributes does a HTML developer need to understand and use when enabling a page for mobile browsers?
The world is mobile, we as user interface experts have to rise to the challenge and face the future!
A couple of awesome resources to look at for developing mobile sites are the opera dev teams articles & W3C standards on CSS for Mobiles.
meta tags for mobiles
<meta name="format-detection" content="telephone=no">
<meta http-equiv="x-rim-auto-match" content="none">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">

Resources