RESPONSIVE DESIGN & DEVELOPMENT THE WHAT, WHY & HOW

Size: px
Start display at page:

Download "RESPONSIVE EMAIL DESIGN & DEVELOPMENT THE WHAT, WHY & HOW"

Transcription

1 RESPONSIVE DESIGN & DEVELOPMENT THE WHAT, WHY & HOW December 2014 SUSANNA OLIVER Web Developer Denver Fargo Minneapolis sundog FAX:

2 Overview Mobile devices permeate every aspect of our lives. They are our telephones, our connection to friends, our fitness coaches, our on-the-go entertainment system, and in some ways, even our health experts. They are in airports, in waiting rooms, in the workplace, and in our homes. And everywhere, people are checking their . So why not deliver s meant for people on the go? Why not deliver content that engages them in their unique situations? Mobile devices account for over 50% of traffic 1, no surprise given that users refer to their smartphones 150 times a day on average. This is a marketer s paradise, rich with opportunity. Forget the billboards. Forget impersonal blanket advertising that everyone ignores anyway. It s the age where we can forge unique user experiences designed to meet the needs of the customer with relevant, useful information and display it in a way that makes it easy for them to use regardless of whether they access it on their smartphone, tablet, or desktop. delivers content directly into a potential customer s pocket, so make the most of this opportunity by optimizing your s for mobile. Technical Level To get the most out of this white paper, you should be familiar with standard development practices. If you don t have prior development experience, start by reading the white paper, Developing High-Performance HTML s, available on the Sundog website: whitepaper/developing-high-performance-html- s Why Go Responsive? Responsive design has a proven track record of improving customer engagement. When responsive design was just starting to catch on in 2012, Deckers, a shoe manufacturer, decided to try it out to see if it would improve the experience of their 35%-65% mobile user base. As Litmus reports, their mobile opens increased by 9% and their click-throughs rose 10%. 2 More recently as mobile usage continues to rise, A/B tests have shown that responsive designs continue to outperform non-responsive s with up to 130% higher click-through rates than non-responsive s. 3 By making it easier for mobile users to access the content, users are following through in greater numbers than ever before. Responsive Design: Talking Points Sometimes, in talking to a client, you just need to present the big picture without getting bogged down in the details. Here are some things you can cover to show how responsive design can benefit them and their customers. 1. THE BOTTOM LINE in responsive design is to cultivate customer engagement by making s easier to consume. Responsive design is specially crafted to give the recipient the best possible experience no matter how they access their . If they open it on their mobile device, the content is legible, clean, and large enough to read easily. In short, the content is easier to use, so it s more likely to be used. Most people, especially in the marketing and technology world, are familiar with how responsive web design works so it s not a foreign concept and may need very little explanation. 2. SHOW EXAMPLES of responsive design to illustrate the advantages over non-responsive design. Most people respond more enthusiastically when visual illustrations are combined with theoretical concepts. Seeing is believing. 3. TELL REAL-LIFE STORIES that prove the effectiveness of responsive design in stimulating customers mobile engagement such as the example of Deckers. The proof is in the pudding and responsive design is a tried and true method that gets results. 4. BUDGETS are also an important consideration. Because the responsive version has to be developed and tested in addition to the initial desktop version, responsive s take longer to build and cost more. The key here is to recognize the potential return on investment. Increased

3 customer engagement more than compensates for the additional expense if a large portion of the recipients regularly open s on a mobile device. From my experience, responsive s take approximately 25% more time than a non-responsive one (depending on design complexity and the extent of the changes) so budgets are a consideration. 5. THE AUDIENCE and their habits vary from business to business, so having a thorough knowledge of how your users are currently reading s is important before going down the responsive path. If only 10% are opening the s on mobile, then maybe responsive design may not be right for this particular business at this time. The return on investment would be inadequate to compensate for the additional cost of development. Types of Mobile-Friendly s When it comes to creating a usable experience on mobile, every needs a different approach. Some s are simple text announcements while others are complex product catalogs with multiple columns. These call for different development approaches, a few of which are explained here. Scalable s: A narrow of 500 pixels or less, making it suitable for either desktop or phone with no adjustment. The narrow width limits the design to a single column, but all other design elements are free for the taking. Scalable or skinny s are best with a simple design, touch-friendly buttons, and limited body text that s styled a bit on the large side. While not technically responsive because nothing changes between mobile and desktop views, it achieves its purpose by being equally friendly on both platforms. Fluid s: An with its width set to 100 percent to fill the screen regardless of the device. Best suited for simple layouts or text-dominant s with optional tweaks to mobile display through a media query. While great for free-flowing designs, this method offers little control over how elements wrap and can prove unwieldy and inconsistent when viewed on larger devices. Adaptive s: A fixed-width (e.g. 600 pixels wide) for desktop with a fixed-width mobile breakpoint (e.g. 320 pixels wide) for mobile. This method is similar to fluid s, but offers more control over precise designs than does fluid development because of its defined pixel widths. Responsive s: This is what we will be covering in the rest of this white paper. A responsive does more than tweak the layout or make the buttons larger. Unlike the other methods of adaptive development, responsive s use media queries to fluidly fit content to each device, adding flexibility and increasing user experience. Key Concepts Responsive design is the art and science of balancing the old desktop standards against the powerful capacity of today s mobile applications. A responsive empowered by mobile still has to be compatible with older desktop clients, but fortunately we don t have to sacrifice the abilities of mobile in the name of compatibility. Responsive design starts with a base desktop version. Standard development practices apply at this stage including inline styles and tables (if this is unfamiliar to you, be sure to study up on the white paper mentioned previously). Responsive functionality is part of this framework by adding classes to the elements that will change on mobile. Through the use of a CSS style block and media query in the head of the , we can manipulate the design for mobile. Unlike responsive web design which allows us to start with mobile, responsive design must always start with a desktop version as a base since it uses inline styles that we must explicitly override on mobile. The reason we can t start with the mobile design and then override with desktop media queries is because several of the most popular desktop and web-based clients, Outlook, Gmail, and Yahoo! Mail, don t support media queries. In contrast, modern mobile clients have good support for media queries. In short, inline styles control the desktop layer and classes dictate the mobile display through a media query. While all this sounds fine and dandy, those familiar with the priority rules of CSS will see an immediate problem: inline styles are innately more powerful than general style blocks, rendering the mobile styles ineffective. Inline styles win every conflict. 3

4 Fortunately, this is not the death knell for responsive design; CSS is smarter than that and provides an additional level of monarchy to trump even an inline style: the all-powerful!important rule. As much as we try to avoid this rule in web development, there s no way around it in development, nor is there any reason to avoid it since s are a one-off page and not an entire website where!important could cause disastrous cascade issues. Another challenge facing responsive design stems from tables. As every developer knows, standards are stuck somewhere in the 1990 s with clients like Outlook (and yes - even some of the recent versions) that have limited CSS support for layout properties like float, margin, and padding. With limitations like these, the only way to achieve complex, cross-client layouts is through tables. However, it comes at a price because table cells are innately limited in their ability to collapse, realign, and shuffle in the way we have come to expect in responsive layouts. Despite these limitations, with a few tricks a two-column table desktop layout can be realigned into a seamless, single-column flow for mobile. Concept Tutorial For this tutorial, we ll be using a two-column, responsive as an example. While this is not an exhaustive explanation, it will provide a foundation from which you can expand your knowledge with experience. Our goal is to turn the non-responsive, two-column on the left (Figure 1) into a fully responsive, single-column as shown on the right (Figure 2). As discussed above, desktop styles should be developed before you start adding responsive styles to ensure they are properly overridden. See Key Concepts on page 3 if this needs more explanation. The Media Query The breakpoint you choose depends on the width of your and your target devices. For this , a 600 pixel max-width will target most phones while leaving tablets to use the desktop version. Additional media queries may also be included to target other devices such as tablets. /*styles here*/ CSS Idiosyncrasies CSS for responsive has two idiosyncrasies: 1.!important and attribute selectors. The!important rule is our best friend because responsive styles have to override the inline desktop styles. Figure 1 2. Use the attribute selector method (i.e. table[class= container ]) within media queries. Due to a bug in Yahoo! Mail which causes the client to ignore media query requirements, attribute selectors are necessary to ensure that this client displays the desktop version as intended. Figure 2 4

5 Display resets Before we start adding mobile classes, it s a good idea to address common client display issues through a CSS reset. Here are a couple pertaining to mobile: Remove blue link color on ios.applelinks a { color: #222; text-decoration: none; Remove body margin & padding body { margin:0; padding:0; font-size: 100%!important; Setting the margin and padding to zero on the body removes any unintended spacing around the edges of the . Framing valuable mobile real estate in an ugly white margin would be a shame. Removing the margin is as simple as doing it for a webpage. Assigning classes Next, assign a class to each element that will need to change on mobile. To start with, create a class that changes the pixel-based widths of tables to 100%. In the example below, the desktop version has an outer table width of 600 pixels and the media query CSS trumps that to 100% for mobile. HTML: <table cellpadding= 0 cellspacing= 0 width= 600 border= 0 align= center bgcolor= #eeeeee class= r_containertable > CSS: table[class= r_containertable ] { width: 100%!important; NOTE: I ve used the prefix r_ to differentiate the responsive design classes from other classes that may be required by management systems. Note that the!important rule comes into play here as discussed above to override the more powerful inline width attribute. Without the!important rule, the mobile CSS would be powerless. Additional considerations for mobile styles Increase text size Use large, touch-friendly buttons Swap out links that reference click or click here Two-Column to Single-Column Now it s time to realign the columns for mobile. The two-column, side-by-side articles are built from adjacent td tags as follows: HTML: <tr> <td class= r_columncell >column 1</td> <td class= r_columncell >column 2</td> </tr> CSS: td[class= r_columncell ] { display: block!important; width: 100%!important; The two td tags have a single class called r_columncell to which the CSS is imparting block-level status, forcing the second column to wrap beneath the first. While other methods are available to wrap articles into a single column, this is considered the most reliable, cross-client method. Hiding Images on Mobile Sometimes mobile devices call for a different image than what was used on the desktop display. Without the use 5

6 of Javascript to swap out images, we have to place both the desktop and mobile versions of the image in the HTML and hide one of them with CSS based on the platform. HTML: <img src= clouds_desktop.jpg height= 75 width= 75 style= display:block class= desktopimg /> <img src= clouds_mobile.jpg height= 1 width= 1 style= display:none class= mobileimg /> CSS: img[class= mobileimg ] { display: block!important; width: 100%!important; height: auto!important; img[class= desktopimg ] { display: none!important; By setting the display to none and the width and height to 1 pixel within the HTML, the mobile image will effectively be hidden from all desktop clients, including Gmail and several versions of Outlook which do not support display. In the CSS, the display property swaps out the two images on mobile devices and resizes the mobile image from one pixel to the proper size. ignored in Gmail s app. The device itself has little to do with whether the displays correctly; rather, it is the application in which the is opened that determines compatibility. For example, a user could have two different experiences on their iphone depending on whether they opened the in their Gmail app or the default mail app. As of the time of this writing, Gmail does not support CSS style blocks and thus, the user would see the desktop version of the . Apple s mail app, on the other hand, responds beautifully to responsive design so in this case, the recipient would see exactly what you want them to see on a mobile device. Responsive design compatibility is dependent on an app having two factors: media queries and style blocks. Media queries is a no-brainer because it s the core of responsive design, but surprisingly enough, some clients like Gmail strip out CSS style blocks which is why responsive designs won t render in Gmail. Fortunately for developers, it doesn t do anything more dangerous than to simply display the desktop version. The main culprits of unsupported media queries or style blocks are: 4 Gmail app Android s Yahoo! Mail app Windows phone 7 & 8 apps Summary Now it s your turn. Take this new knowledge and show your customers you care about them by delivering content that matters to them, displayed in a way that s easy for them to engage with, and showcases your company in a polished, customer-oriented way. Believe me, they ll thank you. Where It Works and Where It Doesn t It s important to understand where responsive design works and where it doesn t work so you don t drive yourself crazy wondering why your responsive design works fine in Apple s default mail app but gets

RESPONSIVE EMAIL DESIGN BY COMMUNIGATOR

RESPONSIVE EMAIL DESIGN BY COMMUNIGATOR RESPONSIVE EMAIL DESIGN BY COMMUNIGATOR RESPONSIVE EMAIL DESIGN According to stats from Litmus, in 2014 at least 53% of emails were opened on a mobile device. That is a huge increase from 2011 when the

More information

Coding HTML Email: Tips, Tricks and Best Practices

Coding HTML Email: Tips, Tricks and Best Practices Before you begin reading PRINT the report out on paper. I assure you that you ll receive much more benefit from studying over the information, rather than simply browsing through it on your computer screen.

More information

RESPONSIVE DESIGN FOR MOBILE RENDERING

RESPONSIVE DESIGN FOR MOBILE RENDERING WHITEPAPER RESPONSIVE DESIGN FOR MOBILE RENDERING DELIVER MOBILE-SPECIFIC CONTENT USING MEDIA QUERIES EXECUTIVE SUMMARY With the widespread adoption of smartphones and tablets, proper email rendering in

More information

Making Responsive Emails

Making Responsive Emails Making Responsive Emails Who Am I? Justine Jordan Wearer of Many Hats, Litmus @meladorri @litmusapp #CSSsummit litmus.com/lp/csssummit Sample HTML, slides, templates, frameworks, and other goodies. Disclaimer:

More information

Email Campaign Guidelines and Best Practices

Email Campaign Guidelines and Best Practices epromo Guidelines HTML Maximum width 700px (length = N/A) Maximum total file size, including all images = 200KB Only use inline CSS, no stylesheets Use tables, rather than layout Use more TEXT instead

More information

HTML TIPS FOR DESIGNING

HTML TIPS FOR DESIGNING This is the first column. Look at me, I m the second column.

More information

GUIDE TO CODE KILLER RESPONSIVE EMAILS

GUIDE TO CODE KILLER RESPONSIVE EMAILS GUIDE TO CODE KILLER RESPONSIVE EMAILS THAT WILL MAKE YOUR EMAILS BEAUTIFUL 3 Create flawless emails with the proper use of HTML, CSS, and Media Queries. But this is only possible if you keep attention

More information

8 STEPS TO CODE KILLER RESPONSIVE EMAILS

8 STEPS TO CODE KILLER RESPONSIVE EMAILS 8 STEPS TO CODE KILLER RESPONSIVE EMAILS THAT WILL MAKE YOUR EMAILS BEAUTIFUL 3 BUILD RESPONSIVE EMAIL STEP BY STEP Steps to create a simple responsive email template. (fluid image, main content, two

More information

Mobile Optimise your Emails. Code & examples to make your email campaigns mobile friendly

Mobile Optimise your Emails. Code & examples to make your email campaigns mobile friendly Mobile Optimise your Emails Code & examples to make your email campaigns mobile friendly Email Marketing Guide June 2013 CONTENTS Introduction...01 The Growing Importance of Mobile...02 Key Mobile Devices...03

More information

A GUIDE TO MOBILE EMAIL

A GUIDE TO MOBILE EMAIL A GUIDE TO MOBILE EMAIL UNDERSTANDING THE WHAT, HOW & WHY TABLE OF CONTENTS EMAILS OPENED ON MOBILE? 1 Email open market share 2011-2013 WHAT DOES THIS MEAN? 2 FIRST THINGS FIRST 2 From and Subject Lines

More information

The Birth of Responsive Email Templates

The Birth of Responsive Email Templates The Birth of Responsive Email Templates The Birth of Responsive Email Templates The adoption of mobility solution at the enterprise level is simply becoming more relentless in order to engage more and

More information

The Essential Guide to HTML Email Design

The Essential Guide to HTML Email Design The Essential Guide to HTML Email Design Index Introduction... 3 Layout... 4 Best Practice HTML Email Example... 5 Images... 6 CSS (Cascading Style Sheets)... 7 Animation and Scripting... 8 How Spam Filters

More information

Responsive Email Design. Our guide to helping you get started. August 2012 Version 0.2

Responsive Email Design. Our guide to helping you get started. August 2012 Version 0.2 Responsive Email Design Our guide to helping you get started August 2012 Version 0.2 Contents Introduction... 3 What is Responsive Design?... 4 What about email?... 5 So what are the pros and cons?...

More information

MCH Strategic Data Best Practices Review

MCH Strategic Data Best Practices Review MCH Strategic Data Best Practices Review Presenters Alex Bardoff Manager, Creative Services abardoff@whatcounts.com Lindsey McFadden Manager, Campaign Production Services lmcfadden@whatcounts.com 2 Creative

More information

How to Properly Compose E-Mail HTML Code : 1

How to Properly Compose E-Mail HTML Code : 1 How to Properly Compose E-Mail HTML Code : 1 For any successful business, creating and sending great looking e-mail is essential to project a professional image. With the proliferation of numerous e-mail

More information

Creative Guidelines for Emails

Creative Guidelines for Emails Version 2.1 Contents 1 Introduction... 3 1.1 Document Aim and Target Audience... 3 1.2 WYSIWYG editors... 3 1.3 Outlook Overview... 3 2 Quick Reference... 4 3 CSS and Styling... 5 3.1 Positioning... 5

More information

Designing HTML emailers

Designing HTML emailers 24 SEPTEMBER 2015 Designing a beautiful but functional HTML emailer can be challenging for the most experienced designer, especially if you don t have a lot of experience working with code. This guide

More information

Principles of Web Design 6 th Edition. Chapter 12 Responsive Web Design

Principles of Web Design 6 th Edition. Chapter 12 Responsive Web Design Principles of Web Design 6 th Edition Chapter 12 Responsive Web Design Objectives Recognize the need for responsive web design Use media queries to apply conditional styles Build a basic media query Create

More information

A quick guide to... Effective HTML Messages

A quick guide to... Effective HTML Messages A quick guide to... Effective HTML Messages In this guide... Learn easy and effective ways to engage your subscribers, increase your click-through ratio (CTR), and get better results from your email marketing.

More information

Microsoft Expression Web Quickstart Guide

Microsoft Expression Web Quickstart Guide Microsoft Expression Web Quickstart Guide Expression Web Quickstart Guide (20-Minute Training) Welcome to Expression Web. When you first launch the program, you ll find a number of task panes, toolbars,

More information

Looking Good! Troubleshooting Email Display Problems

Looking Good! Troubleshooting Email Display Problems E-mail Direct Mail Digital Marketing Sales Tools Funding Data Creative Services Looking Good! Troubleshooting Email Display Problems November 19, 2014 Today s Speaker Geoff Phillips Senior Editor & Email

More information

The Da Vinci Coding: The Art of HTML

The Da Vinci Coding: The Art of HTML The Da Vinci Coding: The Art of HTML The Da Vinci Coding: The Art of HTML Design Author Graham Gnall LiveIntent Senior Platform Solutions Manager Contributing Editor Nick Dujnic Editors Julia Rieger Dave

More information

Table of Contents Find out more about NewZapp

Table of Contents Find out more about NewZapp Table of Contents Why is email display an issue in email marketing?... 2 Expert Email Design... 3 Desktop PC and Apple Mac email applications... 4 Web and mobile device email readers... 5 Creating your

More information

Redesigning Email Campaigns for Mobile

Redesigning Email Campaigns for Mobile Redesigning Email Campaigns for Mobile Kim Mateus Digital Marketing Strategist @KimMateus Calie Brennan Senior UX Designer @CalieDesigns Agenda The Mobile Landscape Understanding your mobile recipients

More information

Responsive Email Design Guide. The fundamentals of designing and building mobile optimized email

Responsive Email Design Guide. The fundamentals of designing and building mobile optimized email Responsive Email Design Guide The fundamentals of designing and building mobile optimized email With the rapid increase of smartphone and tablet adoption, mobile email opens are growing exponentially every

More information

Responsive Design for Email

Responsive Design for Email Good to Know Guide: Responsive Design for Email INSIDE YOU LL FIND... Responsive Design Overview Media Queries Explained Best Practices How It Works Samples of Design Approach Responsive vs. Predictive

More information

New Perspectives on Creating Web Pages with HTML. Considerations for Text and Graphical Tables. A Graphical Table. Using Fixed-Width Fonts

New Perspectives on Creating Web Pages with HTML. Considerations for Text and Graphical Tables. A Graphical Table. Using Fixed-Width Fonts A Text Table New Perspectives on Creating Web Pages with HTML This figure shows a text table. Tutorial 4: Designing a Web Page with Tables 1 2 A Graphical Table Considerations for Text and Graphical Tables

More information

How To Design An Email In Html (Html) And Html (Mailbox) Safely

How To Design An Email In Html (Html) And Html (Mailbox) Safely 24 WAYS to impress your friends At some stage in your career, it s likely you ll be asked by a client to design a HTML email. Before you rush to explain that all the cool kids are using social media, keep

More information

REDESIGNING FOR MOBILE What Email Marketers Need to Know

REDESIGNING FOR MOBILE What Email Marketers Need to Know REDESIGNING FOR MOBILE What Email Marketers Need to Know Getting Ready for Canada s Anti-Spam Law 1 Redesigning for Mobile - What Email Marketers Need To Know 1 REDESIGNING FOR MOBILE What Email Marketers

More information

RESPONSIVE EMAIL DESIGN OUR GUIDE TO HELPING YOU GET STARTED

RESPONSIVE EMAIL DESIGN OUR GUIDE TO HELPING YOU GET STARTED RESPONSIVE EMAIL DESIGN OUR GUIDE TO HELPING YOU GET STARTED CONTENTS What Is Responsive Design? 4 What About Email? 5 So What Are The Pros And Cons? 6 How Can I Build A Responsive Template? 7 Designing

More information

The Essential Guide to HTML Email Design

The Essential Guide to HTML Email Design The Essential Guide to HTML Email Design Emailmovers Limited, Pindar House, Thornburgh Road Scarborough, North Yorkshire, YO11 3UY Tel: 0845 226 7181 Fax: 0845 226 7183 Email: enquiries@emailmovers.com

More information

How to craft a modern, mobile-optimized HTML email template. Jason Samuels, NCFR IT Manager DrupalCamp Twin Cities May 2012

How to craft a modern, mobile-optimized HTML email template. Jason Samuels, NCFR IT Manager DrupalCamp Twin Cities May 2012 How to craft a modern, mobile-optimized HTML email template Jason Samuels, NCFR IT Manager DrupalCamp Twin Cities May 2012 Our old email template Pros Simple Lightweight Worked as plain-text Rendered OK

More information

RESPONSIVE EMAIL DESIGN

RESPONSIVE EMAIL DESIGN RESPONSIVE EMAIL DESIGN SELLIGENT The contents of this manual cover material copyrighted by Selligent. This manual cannot be reproduced, in part or in whole, or distributed or transferred by means electronic

More information

Viewports. Peter-Paul Koch http://quirksmode.org http://twitter.com/ppk jquery EU, 28 February 2014

Viewports. Peter-Paul Koch http://quirksmode.org http://twitter.com/ppk jquery EU, 28 February 2014 Viewports Peter-Paul Koch http://quirksmode.org http://twitter.com/ppk jquery EU, 28 February 2014 or: Why responsive design works Peter-Paul Koch http://quirksmode.org http://twitter.com/ppk jquery EU,

More information

Email Creator Coding Guidelines Toolbox

Email Creator Coding Guidelines Toolbox Email Creator Coding Guidelines Toolbox The following information is needed when coding your own template from html to be imported into the Email Creator. You will need basic html and css knowledge for

More information

CHAPTER 10. When you complete this chapter, you will be able to:

CHAPTER 10. When you complete this chapter, you will be able to: Data Tables CHAPTER 10 When you complete this chapter, you will be able to: Use table elements Use table headers and footers Group columns Style table borders Apply padding, margins, and fl oats to tables

More information

BlueHornet Whitepaper

BlueHornet Whitepaper BlueHornet Whitepaper Best Practices for HTML Email Rendering BlueHornet.com Page Page 1 1 2007 Inc. A wholly owned subsidiary of Digital River, Inc. (619) 295-1856 2150 W. Washington Street #110 San Diego,

More information

Web Design Basics. Cindy Royal, Ph.D. Associate Professor Texas State University

Web Design Basics. Cindy Royal, Ph.D. Associate Professor Texas State University Web Design Basics Cindy Royal, Ph.D. Associate Professor Texas State University HTML and CSS HTML stands for Hypertext Markup Language. It is the main language of the Web. While there are other languages

More information

DESIGNING MOBILE FRIENDLY EMAILS

DESIGNING MOBILE FRIENDLY EMAILS DESIGNING MOBILE FRIENDLY EMAILS MAKING MOBILE EMAILERS SELECT PLAN CONTEXT CONTENT DESIGN DELIVERY Before you go mobile For optimal usage PICTURES OF DESKTOP VS MOBILE SAME SAME BUT DIFFERENT EMAIL CLIENTS

More information

Responsive Web Design: Is It Worth It?

Responsive Web Design: Is It Worth It? Responsive Web Design: Is It Worth It? (Adapted from " Responsive Web Design," by EyeImagine, LLC, December 2012, www.eyeimaginetech.com) Introduction Responsive Web Design is generating a lot of buzz

More information

Mobile Optimisation 2014

Mobile Optimisation 2014 IAB Email Marketing Series 2014 Ryan Hickling, Head of Email, TMW Landscape Over the past two to three years we ve seen a massive change in the way consumers interact with brands digitally. As technology

More information

Best Practices in Email Marketing 33 Tips to Improve Your HTML Email Design

Best Practices in Email Marketing 33 Tips to Improve Your HTML Email Design Best Practices in Email Marketing 33 Tips to Improve Your HTML Email Design Page 0 of 12 Introduction Many email marketing products like Pinpointe include a WYSIWYG + HTML editor and templates so you can

More information

a white paper Email Marketing in a Mobile World

a white paper Email Marketing in a Mobile World a white paper Email Marketing in a Mobile World Table of Contents Email Marketing in a Mobile World...1 Analytics and You... 2 Mobile Friendly Design Strategies... 3-5 Conclusion...6 About Informz Revolutionizing

More information

Your Guide to the All New, Drag & Drop, Mobile-Responsive Email Builder

Your Guide to the All New, Drag & Drop, Mobile-Responsive Email Builder Your Guide to the All New, Drag & Drop, Mobile-Responsive Email Builder The All New Drag & Drop Email Builder from Net-Results Contents I. Introduction II. Overview - The Canvas & Builder Tools III. The

More information

Designing HTML Emails for Use in the Advanced Editor

Designing HTML Emails for Use in the Advanced Editor Designing HTML Emails for Use in the Advanced Editor For years, we at Swiftpage have heard a recurring request from our customers: wouldn t it be great if you could create an HTML document, import it into

More information

CREATING RESPONSIVE UI FOR WEB STORE USING CSS

CREATING RESPONSIVE UI FOR WEB STORE USING CSS CREATING RESPONSIVE UI FOR WEB STORE USING CSS Magdalena Wiciak Bachelor s Thesis May 2014 Degree Programme in Information Technology Technology, communication and transport DESCRIPTION Author(s) WICIAK,

More information

SPELL Tabs Evaluation Version

SPELL Tabs Evaluation Version SPELL Tabs Evaluation Version Inline Navigation for SharePoint Pages SPELL Tabs v 0.9.2 Evaluation Version May 2013 Author: Christophe HUMBERT User Managed Solutions LLC Table of Contents About the SPELL

More information

Web Development 1 A4 Project Description Web Architecture

Web Development 1 A4 Project Description Web Architecture Web Development 1 Introduction to A4, Architecture, Core Technologies A4 Project Description 2 Web Architecture 3 Web Service Web Service Web Service Browser Javascript Database Javascript Other Stuff:

More information

6-part Lunch Learning Series

6-part Lunch Learning Series Lunch & Learn: Mobile Email 101 Thursday, January 17, 2013 12:00pm 12:30pm EST #asaewebinar Presented by: Ronald McGrath Chief Technology Officer, HighRoad Solution Lydia Roberts Professional Services,

More information

HTML Email Power Tips. HTML messages improve your CTR. World s Easiest Email Marketing.

HTML Email Power Tips. HTML messages improve your CTR. World s Easiest Email Marketing. A quick guide to Learn easy and effective ways to engage your subscribers, increase your click-through ratio (CTR), and get better results from your email marketing. HTML Email Power Tips Be readable get

More information

Creating Effective HTML Email Campaigns

Creating Effective HTML Email Campaigns Creating Effective HTML Email Campaigns This event is being recorded. You will receive a copy of the audio/video at the end of the presentation. 701 South Broad Street, Lititz, PA 17543 www.listrak.com

More information

Mobile Device Design Tips For Email Marketing

Mobile Device Design Tips For Email Marketing WHITEPAPER Top 10 Mobile Device Design Tips for Email In case you haven t noticed, mobile devices are literally everywhere. We re texting more than ever, shopping online, downloading apps, playing games,

More information

Guidelines for Effective Email Creative

Guidelines for Effective Email Creative Guidelines for Effective Email Creative While the need for quality and effective design has always existed from a marketing standpoint, challenges unique to the email space require a different look at

More information

Planning a Responsive Website

Planning a Responsive Website Planning a Responsive Website Planning a website is important for both web designers and website owners. Planning your website before you start building it can save you time, keep your site code more accurate

More information

This document will describe how you can create your own, fully responsive. drag and drop email template to use in the email creator.

This document will describe how you can create your own, fully responsive. drag and drop email template to use in the email creator. 1 Introduction This document will describe how you can create your own, fully responsive drag and drop email template to use in the email creator. It includes ready-made HTML code that will allow you to

More information

Caldes CM12: Content Management Software Introduction v1.9

Caldes CM12: Content Management Software Introduction v1.9 Caldes CM12: Content Management Software Introduction v1.9 Enterprise Version: If you are using Express, please contact us. Background Information This manual assumes that you have some basic knowledge

More information

HTML Email Template for Northstar UI guidelines

HTML Email Template for Northstar UI guidelines I. General Requirements... 1 II. Visual Specifications... 2 III. Email template types (purpose of the email)... 2 IV. Email template formats... 2 V. Main Elements... 6 Pre-header... 7 Header... 7 Email

More information

Table of Contents Desktop PC and Apple Mac email applications Web and mobile device email readers Find out more about NewZapp

Table of Contents Desktop PC and Apple Mac email applications Web and mobile device email readers Find out more about NewZapp Table of Contents Why is email display an issue in email marketing?... 2 Expert Email Design... 3 Quick look-up overview... 4 Desktop PC and Apple Mac email applications... 5 Outlook 2007-2016... 6 Content

More information

Responsive Web Design (RWD) Best Practices Guide Version: 2013.11.20

Responsive Web Design (RWD) Best Practices Guide Version: 2013.11.20 Responsive Web Design (RWD) Best Practices Guide Version: 2013.11.20 This document includes best practices around responsive web design (RWD) when developing hybrid applications. Details on each checklist

More information

Mobile Email Design: Marketing Fit for the Small Screen

Mobile Email Design: Marketing Fit for the Small Screen Mobile Email Design: Marketing Fit for the Small Screen We live in an always on, always connected world. And there is no turning back. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 Introduction GO! GO!

More information

CLEAN CODE FOR COMPLEX EMAILS

CLEAN CODE FOR COMPLEX EMAILS CLEAN CODE FOR COMPLEX EMAILS With the increased popularity of mobile devices, good email development has become more important than ever. Design studios are working hard to keep up with trends and deliver

More information

2014 Association Email Marketing. Benchmark Report. www.informz.com

2014 Association Email Marketing. Benchmark Report. www.informz.com 2014 Association Email Marketing Benchmark Report www.informz.com Table of Contents 03 Benchmarking Data for Strategic Email Marketing 04 The Details about the Data 05 Key Email Marketing Metrics 06 Key

More information

Mobile Friendly Email Design

Mobile Friendly Email Design Mobile Friendly Email Design Create emails that look good on every device. A guide by Mobile friendly email design Contents Why Design for Mobiles?...3 You Must Optimise for Mobiles...4 Mobile User s Behvaiour...5

More information

Outline of CSS: Cascading Style Sheets

Outline of CSS: Cascading Style Sheets Outline of CSS: Cascading Style Sheets nigelbuckner 2014 This is an introduction to CSS showing how styles are written, types of style sheets, CSS selectors, the cascade, grouping styles and how styles

More information

Responsive Email Design. Our guide to helping you get started. March 2013 Version 0.4

Responsive Email Design. Our guide to helping you get started. March 2013 Version 0.4 Responsive Email Design Our guide to helping you get started March 2013 Version 0.4 Contents Introduction... 3 What is Responsive Design?... 4 What about email?... 5 So what are the pros and cons?... 6

More information

File types There are certain image file types that can be used in a web page. They are:

File types There are certain image file types that can be used in a web page. They are: Using Images in web design (Dreamweaver CC) In this document: Image file types for web pages Inserting an image Resizing an image in Dreamweaver CSS properties for image alignment and responsiveness nigelbuckner

More information

Going Beyond SAP ITS Mobile Apps to a Responsive Design Mobile Apps. JK (JayaKumar Pedapudi) Principal Consultant NTT DATA, Inc.

Going Beyond SAP ITS Mobile Apps to a Responsive Design Mobile Apps. JK (JayaKumar Pedapudi) Principal Consultant NTT DATA, Inc. Going Beyond SAP ITS Mobile Apps to a Responsive Design Mobile Apps JK (JayaKumar Pedapudi) Principal Consultant NTT DATA, Inc. Introduction. Learning Points. What is Responsive Design and its Role? Design

More information

COMMONWEALTH OF PENNSYLVANIA DEPARTMENT S OF Human Services, INSURANCE, AND AGING

COMMONWEALTH OF PENNSYLVANIA DEPARTMENT S OF Human Services, INSURANCE, AND AGING COMMONWEALTH OF PENNSYLVANIA DEPARTMENT S OF Human Services, INSURANCE, AND AGING INFORMATION TECHNOLOGY GUIDELINE Name Of Guideline: Domain: Application Date Issued: 03/18/2014 Date Revised: 02/17/2016

More information

Building Responsive Websites with the Bootstrap 3 Framework

Building Responsive Websites with the Bootstrap 3 Framework Building Responsive Websites with the Bootstrap 3 Framework Michael Slater and Charity Grace Kirk michael@webvanta.com 888.670.6793 1 Today s Presenters Michael Slater President and Cofounder of Webvanta

More information

Email Marketing Best Practices - Top 10 tips

Email Marketing Best Practices - Top 10 tips Email Marketing Best Practices - Top 10 tips Contents 1. Make a good first impression... 2 2. Above the fold... 3 3. Keep it short and to the point.... 3 4. Send what your customer wants not what you want

More information

Dreamweaver and Fireworks MX Integration Brian Hogan

Dreamweaver and Fireworks MX Integration Brian Hogan Dreamweaver and Fireworks MX Integration Brian Hogan This tutorial will take you through the necessary steps to create a template-based web site using Macromedia Dreamweaver and Macromedia Fireworks. The

More information

CSS SUPPORT IN EMAIL THE PROBLEM WE SHOULD BE FIXING FIRST #LETSFIXEMAIL

CSS SUPPORT IN EMAIL THE PROBLEM WE SHOULD BE FIXING FIRST #LETSFIXEMAIL CSS SUPPORT IN EMAIL THE PROBLEM WE SHOULD BE FIXING FIRST #LETSFIXEMAIL Standards are not usually standard 2 Standards are not usually standard 3 it can be funny. but not always. 4 on our panel ROS HODGEKISS

More information

Responsive Web Design for Drupal

Responsive Web Design for Drupal Responsive Web Design for Drupal www.responsivewebdesignguild.com @emmajanedotnet emma@designtotheme.com I am IAM Sorry A boot eh? Drupal drupal.org/user/1773 Photo: morten.dk Legs: walkah Author / Trainer

More information

Mobile Marketing How to Get Your Share of $8 Billion in Mobile Bookings

Mobile Marketing How to Get Your Share of $8 Billion in Mobile Bookings INDUSTRY INSIGHT GUIDE Mobile Marketing How to Get Your Share of $8 Billion in Mobile Bookings Inside How to boost direct bookings Why you need a mobile-friendly site Pros & cons of mobile websites Pros

More information

RESPONSIVE WEB DESIGN

RESPONSIVE WEB DESIGN WHITE PAPER December 2012 RESPONSIVE WEB DESIGN A QUICK INTRODUCTION Responsive Web Design is generating a lot of buzz among web designers. What s all the fuss about? facing Responsive Design and total

More information

EMAIL MARKETING BEST PRACTICES. www.agillic.com contact@agillic.com

EMAIL MARKETING BEST PRACTICES. www.agillic.com contact@agillic.com EMAIL MARKETING BEST PRACTICES www.agillic.com contact@agillic.com SUBJECTS AND PREHEADERS Subject Preheader Tell it don t sell it Your subjects and preheaders can make all the difference to your email.

More information

Responsive Web Design: Media Types/Media Queries/Fluid Images

Responsive Web Design: Media Types/Media Queries/Fluid Images HTML Media Types Responsive Web Design: Media Types/Media Queries/Fluid Images Mr Kruyer s list of HTML Media Types to deliver CSS to different devices. Important note: Only the first three are well supported.

More information

Responsive Email Design

Responsive Email Design Responsive Email Design For the Hospitality Industry By Arek Klauza, Linda Tran & Carrie Messmore February 2013 Responsive Email Design There has been a lot of chatter in recent months in regards to Responsive

More information

Responsive Web Design. vs. Mobile Web App: What s Best for Your Enterprise? A WhitePaper by RapidValue Solutions

Responsive Web Design. vs. Mobile Web App: What s Best for Your Enterprise? A WhitePaper by RapidValue Solutions Responsive Web Design vs. Mobile Web App: What s Best for Your Enterprise? A WhitePaper by RapidValue Solutions The New Design Trend: Build a Website; Enable Self-optimization Across All Mobile De vices

More information

We automatically generate the HTML for this as seen below. Provide the above components for the teaser.txt file.

We automatically generate the HTML for this as seen below. Provide the above components for the teaser.txt file. Creative Specs Gmail Sponsored Promotions Overview The GSP creative asset will be a ZIP folder, containing four components: 1. Teaser text file 2. Teaser logo image 3. HTML file with the fully expanded

More information

Creativity Whitepaper 2014

Creativity Whitepaper 2014 IAB Email Marketing Series Creativity Whitepaper 2014 Tom Wheatley, Head of Email, Shortlist Media Ltd Landscape The email landscape is no longer as clear cut for marketers as it has been seen in previous

More information

Intro to Web Design. ACM Webmonkeys @ UIUC

Intro to Web Design. ACM Webmonkeys @ UIUC Intro to Web Design ACM Webmonkeys @ UIUC How do websites work? Note that a similar procedure is used to load images, etc. What is HTML? An HTML file is just a plain text file. You can write all your HTML

More information

Making Textual Webpage Content Responsive

Making Textual Webpage Content Responsive Making Textual Webpage Content Responsive Web page content can be quickly broken down into the following categories: 1) Textual Information 2) Image based information 3) Video information i.e. videocasts

More information

WebFOCUS BI Portal: S.I.M.P.L.E. as can be

WebFOCUS BI Portal: S.I.M.P.L.E. as can be WebFOCUS BI Portal: S.I.M.P.L.E. as can be Author: Matthew Lerner Company: Information Builders Presentation Abstract: This hands-on session will introduce attendees to the new WebFOCUS BI Portal. We will

More information

LaGuardia Community College 31-10 Thomson Ave, Long Island City, New York 11101 Created by ISMD s Dept. Training Team. Overview

LaGuardia Community College 31-10 Thomson Ave, Long Island City, New York 11101 Created by ISMD s Dept. Training Team. Overview Overview Dreamweaver gives you many options when it comes to setting the properties for your webpages. Within the "Page Properties" dialog box, you can set the appearance of your page, name your page and

More information

Inspiring Creative Fun Ysbrydoledig Creadigol Hwyl. Web Design in Nvu Workbook 1

Inspiring Creative Fun Ysbrydoledig Creadigol Hwyl. Web Design in Nvu Workbook 1 Inspiring Creative Fun Ysbrydoledig Creadigol Hwyl Web Design in Nvu Workbook 1 The demand for Web Development skills is at an all time high due to the growing demand for businesses and individuals to

More information

Level 1 - Clients and Markup

Level 1 - Clients and Markup Level 1 - Clients and Markup The design for the email we ll build In this level The skills you ll need to compete Power Moves HTML and CSS Media queries Signature Move Using external resources An HTML

More information

AEGEE Podio Guidelines

AEGEE Podio Guidelines AEGEE Podio Guidelines EUROPEAN STUDENTS FORUM Contains What is Podio?... 3 Podio vs Facebook... 3 Video Tutorial Podio Basics... 3 Podio for AEGEE-Europe... 3 How to get it?... 3 Getting started... 4

More information

Caldes CM2: Marketing Emails Support Document v1.12

Caldes CM2: Marketing Emails Support Document v1.12 Caldes CM2: Marketing Emails Support Document v1.12 Caldes Enterprise software can be used to send out marketing email. Due to the nature of these being bespoke designs, Caldes make a one off charge to

More information

Kentico CMS, 2011 Kentico Software. Contents. Mobile Development using Kentico CMS 6 2 Exploring the Mobile Environment 1

Kentico CMS, 2011 Kentico Software. Contents. Mobile Development using Kentico CMS 6 2 Exploring the Mobile Environment 1 Contents Mobile Development using Kentico CMS 6 2 Exploring the Mobile Environment 1 Time for action - Viewing the mobile sample site 2 What just happened 4 Time for Action - Mobile device redirection

More information

Email Design No-No s Guide for Non-Designers

Email Design No-No s Guide for Non-Designers Introduction: Graphic designers are experts for a reason through training and experience they have developed an eye for what is visually appealing and what draws a reader in. But knowledge of attractive

More information

Working with RD Web Access in Windows Server 2012

Working with RD Web Access in Windows Server 2012 Working with RD Web Access in Windows Server 2012 Introduction to RD Web Access So far in this series we have talked about how to successfully deploy and manage a Microsoft Windows Server 2012 VDI environment.

More information

The Third Screen: What Email Marketers Need to Know About Mobile Rendering

The Third Screen: What Email Marketers Need to Know About Mobile Rendering BlueHornet Whitepaper The Third Screen: What Email Marketers Need to Know About Mobile Rendering Part One: Your Marketing Message on the Third Screen Executive Summary The rapid rise in adoption of so-called

More information

Contents. Downloading the Data Files... 2. Centering Page Elements... 6

Contents. Downloading the Data Files... 2. Centering Page Elements... 6 Creating a Web Page Using HTML Part 1: Creating the Basic Structure of the Web Site INFORMATION TECHNOLOGY SERVICES California State University, Los Angeles Version 2.0 Winter 2010 Contents Introduction...

More information

Advanced Drupal Features and Techniques

Advanced Drupal Features and Techniques Advanced Drupal Features and Techniques Mount Holyoke College Office of Communications and Marketing 04/2/15 This MHC Drupal Manual contains proprietary information. It is the express property of Mount

More information

HTML Fails: What No One Tells You About Email HTML

HTML Fails: What No One Tells You About Email HTML HTML Fails: What No One Tells You About Email HTML 2 Today s Webinar Presenter Kate McDonough Campaign Manager at PostUp Worked with various ESPs: Constant Contact, Campaign Monitor, ExactTarget, Distribion

More information

Chapter 1: Outlook Isn t Going Anywhere... 2. Chapter 2: 17 Must-Know Tricks for Outlook 2007, 2010 & 2013... 3

Chapter 1: Outlook Isn t Going Anywhere... 2. Chapter 2: 17 Must-Know Tricks for Outlook 2007, 2010 & 2013... 3 Table of Contents Chapter 1: Outlook Isn t Going Anywhere... 2 Chapter 2: 17 Must-Know Tricks for Outlook 2007, 2010 & 2013... 3 Chapter 3: 3 Way to Remove Unwanted Gaps Between Tables... 12 Chapter 4:

More information

White Paper Using PHP Site Assistant to create sites for mobile devices

White Paper Using PHP Site Assistant to create sites for mobile devices White Paper Using PHP Site Assistant to create sites for mobile devices Overview In the last few years, a major shift has occurred in the number and capabilities of mobile devices. Improvements in processor

More information

Responsive Web Design Creative License

Responsive Web Design Creative License Responsive Web Design Creative License Level: Introduction - Advanced Duration: 16 Days Time: 9:30 AM - 4:30 PM Cost: 2197 Overview Web design today is no longer just about cross-browser compatibility.

More information

University of Colorado Boulder Colorado Springs Denver Anschutz Medical Campus. CU ecomm Program Email Marketing Best Practices

University of Colorado Boulder Colorado Springs Denver Anschutz Medical Campus. CU ecomm Program Email Marketing Best Practices University of Colorado Boulder Colorado Springs Denver Anschutz Medical Campus CU ecomm Program Email Marketing Best Practices What is ecomm?... 2 Why use ecomm?... 3 Legal Considerations... 4 Email Marketing

More information