MOBILE OPTIMIZATION. the what, why and how of responsive design

Size: px
Start display at page:

Download "MOBILE OPTIMIZATION. the what, why and how of responsive design"

Transcription

1 MOBILE OPTIMIZATION the what, why and how of responsive design includes a step-by-step tutorial

2 Table of Contents Chapter 1: Why Go Responsive?... 2 Chapter 2: Case Studies: Adapting to Responsive Design... 4 Chapter 3: Responsive Design Tutorial... 8 Chapter 4: Free Responsive Template

3 Chapter 1: Why Go Responsive? We are living in the age of mobile devices. We don t go anywhere without our phones and it's hard to remember a time when social networks, news and s weren't at our fingertips. The chart below ranks the most popular smartphone activities. Guess what comes in at #1? This is a screen capture from IDC and Facebook: Always Connected. Over 53% of total opens occurred on mobile devices in 2014, making responsive design one of the most powerful tools available to designers, developers and marketers today. Unfortunately, it s also one of the most confusing. From certain clients not supporting media queries to choosing the min and max width, coding s that look fantastic on every device can be quite the challenge. No need to panic, though. We ve been researching, coding and trouble-shooting responsive s from the get-go and documented all of the quirks and fixes along the way. 2

4 In this guide, you ll get everything from case studies to an easy responsive design tutorial to troubleshooting tips and more. So what are you waiting for? Dig in to discover all you need to know to create an that looks beautiful in every inbox, every time. 3

5 Chapter 2: Case Studies: Adapting to Responsive Design It can be hard to convince higher-ups or customers to spend the time and money required to create mobile-friendly s. But it s vitally important. Optyn reported that 75% of smartphone users delete s they can t read (i.e.: non-responsive s rendered illegible on a mobile device). So, we scoured the web and found three case studies that exemplify the results responsive design can achieve. Auto Trader s responsive newsletter Auto Trader, an online marketplace for car shoppers and sellers, was sending out a monthly newsletter to over 250,000 subscribers across the U.K. They examined the stats of their carenthusiast audience and noticed that over 40% of their opens occurred on mobile devices, but their template was not responsive. Spurred by the need to make their mobile-friendly, they recruited full-service digital agency Chalk and Pixel to code and design a new template from scratch. Chalk and Pixel was charged with increasing both engagement levels and trust in the brand. The new template design improved metrics across the board when compared to the previous month s newsletter. It saw a: 20% increase in open rate 45% increase in engagement 134% increase in click throughs Take a look at Chalk and Pixel s new template for Auto Trader that meets the unique requirements of all mobile devices. 4

6 This is a screen capture provided by Chalk and Pixel. The new design also utilizes preheader text, CSS based buttons and styled alt text to improve the overall look and feel, taking Auto Trader s campaigns to the next level. 5

7 Crocs: Static desktop design vs. responsive design The hospitality and the travel industries have been the fastest adopters of responsive design. Some industries, though, haven t embraced mobilefriendly techniques. Even though DEG Digital reported that 60% of retail brands subscribers view s on a mobile device, this industry has been sluggish when it comes to going responsive. Crocs led the way, though, when they teamed up with DEG Digital to create a responsive . DEG Digital created a mobile-friendly design and a static desktop version of Croc s promotional A 50/50 split test of these two versions found that the mobile-friendly template beat the static layout by a landslide: 7.66% increase in CTR iphone read engagement had a 15.63% lift Mobile read engagement had an 8.82% lift The image to the right is a screen capture from DEG Digital s website. 6

8 Stream Companies and the Montgomeryville Nissan Dealership Stream Companies, a fully integrated advertising agency, has been implementing Montgomeryville Nissan s marketing since Utilizing on Acid s analytics, Stream determined that 41% of Montgomeryville Nissan s subscribers were opening the dealership s unresponsive sales and service campaigns on mobile devices. Montgomeryville Nissan already had a beautiful and successful template design. Stream Companies leveraged their pre-existing templates and updated them with the proper code to optimize their s for the mobile audience. This is a screen capture from Stream Companies case study. The new layout adapts to different devices and screen sizes with the flexibility to show the same content, or restrict the amount of content shown, wherever and whenever. To ensure their revamp of Montgomeryville Nissan s templates was effective, Stream ran three 50/50 split tests over a month s time. In these tests, 50% of the list received the new responsive template and 50% of the list received the non-responsive template. Every other element of the two s being tested were identical (from name, from address, promotional content and subject lines). The responsive reigned victorious over the original design: Test #1: 7

9 7% higher open rate 16% higher CTR Test #2: 148% higher open rate 6% higher CTR Test #3: 48% higher open rate 43% higher CTR Mobile optimization yielded an impressive surge in opens and clicks for Montgomeryville Nissan, allowing them to communicate with more customers than ever before. Seize the day The time to go responsive is now. About half of your audience reads on their phone, and that number will continue to grow. And the case studies we ve shared point to the importance of responsive design for your marketing efforts. Now that we ve helped you make the case for responsive design, we ll give you the tools you need to create those mobile-friendly templates. 8

10 Chapter 3: Responsive Design Tutorial Already have a non-responsive template that you love? We ve got you covered. We re going to take a template from 99designs (one that we wrote about in our 600+ Free Templates blog) and add responsive behavior to it so you can see how it's done. If you don t already have a template, go to their site and get one so that you can follow along. For this tutorial, I am using the newsletter blue template, called NEWSLETTER BLUE.html. You'll want to open it up in a text editor, and save a new version of it that you ll make responsive. Add a style block If you don t already have a style block, you re going to need one. This is where the media queries go, and that s what is going to make your responsive. A media query is a conditional statement that contains extra CSS rules to change the appearance of the when the conditions in the statement are met. For this , we re going to use the same media queries that we used in our Responsive Template. You can check out the basic code right here: <style only screen and (max-width: 640px) only screen and (max-width: 479px) { </style> The first media query will trigger for screens of less than 640 pixels in width. The second query triggers for screens of less than 479 pixels in width. For more on min/max width, check out this blog. The query that triggers on smaller screens comes last so that it will take precedence over the earlier CSS rules in the block. We re going to place our styles inside these media queries in the later steps. 9

11 Control the width of the container element We need to control the width of the containing element, so that the narrows to a single column on smaller devices. To start, let's identify the parts of the that determine its width. In this case, we re looking at: <table width="600" border="0" cellspacing="0" cellpadding="0" bgcolor="#ffffff" align="center"> All we need to do is add a class to this table to control its width. <table width="600" border="0" cellspacing="0" cellpadding="0" bgcolor="#ffffff" align="center" class="devicewidth"> Now, we ll add this class to our media only screen and (max-width: 640px) { body[yahoo].devicewidth only screen and (max-width: 479px) { body[yahoo].devicewidth {width:280px!important; If you save your file and resize the window now, you won t be able to see any changes. That s because resizing the container element isn t the only thing we need to do to make the reach the correct width. Any image or table that is too wide for the new table width will cause it to stretch to accommodate the wider element. That s why, in the next step, we re going to need to apply classes to some of the images in this to control their size as well. Add new classes to relevant images Some of the images in this are so wide (more than 440 or 280 pixels wide, respectively) that they re going to break out of the new sizes for the table that we picked earlier. We re going 10

12 to add some special classes to help resize them. For instance, in the 's header, we have a long horizontal bar. <td height="30"><img src="images/promo-green2_01_04.jpg" width="393" height="30" border="0" alt=""/></td> This bar is set to be 393 pixels wide, which will combine with the rest of the header to be too big. To fix this, we ll add another class: <td height="30"><img src="images/promo-green2_01_04.jpg" width="393" height="30" border="0" alt="" class="devicewidth2"/></td> The featured image for the is too wide, as is another image being used as a horizontal rule near the bottom. We ll do the same thing for them, with a custom class. For example, the featured image: <td align="center"><a href= " target="_blank"><img src="images/promo-green2_02.jpg" alt="" width="598" height="249" border="0"/></a></td> Becomes: <td align="center"><a href= " target="_blank"><img src="images/promo-green2_02.jpg" alt="" width="598" border="0" class="devicewidth3"/></a></td> Notice that we removed the height attribute. If we leave the height attribute, the image will look stretched to reach that height. In other words, if we don't specify a height, it will automatically maintain its ratio. Now we will change the size of these images in the media queries: 11

13 @media only screen and (max-width: 640px) { body[yahoo].devicewidth {width:440px!important; body[yahoo].devicewidth2 {width:300px!important; body[yahoo].devicewidth3 only screen and (max-width: 479px) { body[yahoo].devicewidth {width:280px!important; body[yahoo].devicewidth2 {width:200px!important; body[yahoo].devicewidth3 {width:380px!important; After this, when you resize the window, you should see the blue bar and horizontal rules get small enough to accommodate the new responsive behaviors. The won t get any smaller, though, because the table structure is still keeping it at the same size. In the next step, we ll add a style to make the tables stack under each other. 12

14 Make some TDs Display:Block Most designers use a table structure to create a float:left type effect for their content blocks. In this case, we have a sidebar on the right that will need to move under the rest of the content for the smaller views. Luckily for us, this is actually a pretty easy trick. We ll just add a style to the containing TDs, in this case there are two of them. The TD containing the content on the left is width 58%, and the right side TD is width 35%. <td width="58%" align="left" valign="top">...lots of code in between here... <td width="35%" align="left" valign="top"> Let's add in the block_td class here. <td width="58%" align="left" valign="top" class="block_td">...lots of code in between here... <td width="35%" align="left" valign="top" class="block_td"> Now we ll add the only screen and (max-width: 640px) { body[yahoo].devicewidth {width:440px!important; body[yahoo].devicewidth2 {width:300px!important; body[yahoo].devicewidth3 {width:440px!important; body[yahoo].block_td {display: only screen and (max-width: 479px) { body[yahoo].devicewidth {width:280px!important; body[yahoo].devicewidth2 {width:200px!important; body[yahoo].devicewidth3 {width:380px!important; 13

15 With this class, each of these TDs will display in its own vertical space instead of sitting side by side. They re still constrained by the percent width listed inline, so we ll have to overwrite that in the next step. Fix percent-based TDs Now our two main content TDs look like this: <td width="58%" align="left" valign="top" class="block_td">...lots of code in between here... <td width="35%" align="left" valign="top" class="block_td"> 14

16 We ll add another class to them to make them 100% width on mobile. I m calling this class percent_td, but you can name it anything you like. <td width="58%" align="left" valign="top" class="block_td percent_td">...lots of code in between here... <td width="35%" align="left" valign="top" class="block_td percent_td"> I am creating a new class because there are a lot more places you'll want to use this in the to make sure that all of these content blocks expand to full size in the mobile view. Now let s add the only screen and (max-width: 640px) { body[yahoo].devicewidth {width:440px!important; body[yahoo].devicewidth2 {width:300px!important; body[yahoo].devicewidth3 {width:440px!important; body[yahoo].block_td {display: block; body[yahoo].percent_td {width: only screen and (max-width: 479px) { body[yahoo].devicewidth {width:280px!important; body[yahoo].devicewidth2 {width:200px!important; body[yahoo].devicewidth3 {width:380px!important; Notice that we only need to add this style to the first media query, because anything that triggers the second query will also trigger the first. Our is looking pretty good now! We do still have a few lingering problems to clean up. 15

17 Add finishing touches If you ve been following these directions faithfully, you ll see there are still a few problems. A remnant of the dashed border that separated the left and right columns can still be seen, as well as the image from the right column just floating in space. Let s hide both of these things in the mobile view, to clean it up a bit. The following technique can be used to hide almost any element 16

18 of the that you don t want to show on mobile, if applied carefully. Be wary of removing whole table rows or cells, as this can sometimes mess with the rest of the structure of a table. This is the code that creates the border effect: <td width="5%" style="border-right:2px dashed #95989a"> </td> So we ll add the dashed class to it. We ll overwrite the border to 0 in CSS. <td width="5%" style="border-right:2px dashed #95989a" class="dashed"> </td> We ll also add the hidden class to the image from the right column: <td><a href=" target="_blank"><img src="images/newsletter GREEN03.jpg" alt="buy her" width="181" height="144" border="0" class="hidden"/></a></td> 17

19 Last, we need to reset the size of some percent based TDs that are now too big. We ll set these to be 155px wide, slightly larger than the image they contain. <td width="43%"><img src="images/newsletter GREEN01.jpg" width="150" height="130" border="0" alt=""/></td> Becomes: <td width="43%" class="pic_td"><img src="images/newsletter GREEN01.jpg" width="150" height="130" border="0" alt=""/></td> 18

20 Give each of the following TDs (with 57% width) the percent_td class so that they ll occupy the remaining width of the row. And now the last bit of only screen and (max-width: 640px) { body[yahoo].devicewidth {width:440px!important; body[yahoo].devicewidth2 {width:300px!important; body[yahoo].devicewidth3 {width:440px!important; body[yahoo].block_td {display: block; body[yahoo].percent_td {width: 100%!important; body[yahoo].pic_td {width: 155px!important; body[yahoo].dashed {border-right: 0px!important; body[yahoo].hidden {display: only screen and (max-width: 479px) { body[yahoo].devicewidth {width:280px!important; body[yahoo].devicewidth2 {width:200px!important; body[yahoo].devicewidth3 {width:380px!important; That's it! You should now have a pretty good looking responsive template. Of course, you'll probably want to tweak some of the padding and a few other details to really add some polish to it. If you need help troubleshooting any coding issues, check out our blog where we ve been documenting client quirks for over 5 years! 19

21 Chapter 4: Free Responsive Template If you ve made it this far, it s safe to assume you understand that different clients and devices can do the darndest things to your responsive template. After we ve harped on the importance and effectiveness of responsive design, it would be almost criminal to leave you without any mobile-friendly resources. That s why we have an easy to customize, free responsive template. We continually run our template through our testing platform to ensure it looks beautiful in the most popular clients and mobile devices. The breakpoints we ve selected for this template (determined through our most common dimensions research and media query test) are as follows: 1. A width less than 480px for the iphone and smaller smart phones. 2. A width between 481px and 640px for medium sized Android devices 3. A default dimension of 580px for tablets, web, and desktop clients In addition, you can mix and match each section of this layout and we tried to make it pretty generic because your needs will likely change over time. And since every inbox will display your differently, it is important to test before you hit send. on Acid simplifies your testing process. Send an to our system and we ll generate screenshots in the most popular clients and devices in minutes. We don t stop there. You can also use our code analysis to identify troublemakers and tap into our tips and tricks to solve those quirky display problems. Send with confidence and maximize your ROI for every campaign by trying us free for 7 days. 20

Table of content. Creating signup form Associating automation tools to signup form Signup form reports...42

Table of content. Creating signup form Associating automation tools to signup form Signup form reports...42 A User Guide Signup forms are the most popular tools for building a subscriber database. They let your website visitors become subscribers by entering basic details such as name and email address. The

More information

TRUST YOUR WEBSITE TO THE EXPERTS PROFESSIONALLY DESIGNED AND FOUND EVERYWHERE THAT MATTERS

TRUST YOUR WEBSITE TO THE EXPERTS PROFESSIONALLY DESIGNED AND FOUND EVERYWHERE THAT MATTERS TRUST YOUR WEBSITE TO THE EXPERTS PROFESSIONALLY DESIGNED AND FOUND EVERYWHERE THAT MATTERS CONTENTS Trust HQBytes with your website 04 The HQBytes difference 10 Designed by professionals 05 Our websites

More information

The Marketer s Guide to. Responsive Design

The  Marketer s Guide to. Responsive Design The Email Marketer s Guide to Responsive Design A new design trend is in town You ve heard of it. You ve seen it in action. But how do you actually do it? You probably have a few questions about responsive

More information

DISCOVERY AND PLANNING

DISCOVERY AND PLANNING your first email- marketing project HELLO. If you re a web designer, and you ve been put in charge of your very first email-marketing gig, we wrote this for you. It s basically a list of all the things

More information

1. You re boring your audience

1. You re boring your audience 1. You re boring your audience OK, so you ve convinced your users to visit your landing page. Or even better they ve signed up for your mailing list. That s great! Now that you have their attention, the

More information

Why is display an issue in marketing?

Why is  display an issue in  marketing? Table of Contents Why is email display an issue in email marketing?... 2 Expert Email Design... 3 Unwanted content formatting... 4 Animated GIFs not working correctly... 5 Strange lines appearing in my

More information

The MailNinja 7-Step Success Formula For Sending Lead Generating Campaigns

The MailNinja 7-Step Success Formula For Sending Lead Generating  Campaigns The MailNinja 7-Step Success Formula For Sending Lead Generating Email Campaigns The MailNinja 7-Step Success Formula For Sending Lead Generating Email Campaigns Over the past 10 years we ve perfected

More information

Welcome Please sit on alternating rows. powered by lucid & no.dots.nl/student

Welcome Please sit on alternating rows. powered by lucid & no.dots.nl/student Welcome Please sit on alternating rows powered by lucid & no.dots.nl/student HTML && CSS Workshop Day Day two, November January 276 powered by lucid & no.dots.nl/student About the Workshop Day two: CSS

More information

VIDEO 1: WHY IS SEGMENTATION IMPORTANT WITH SMART CONTENT?

VIDEO 1: WHY IS SEGMENTATION IMPORTANT WITH SMART CONTENT? VIDEO 1: WHY IS SEGMENTATION IMPORTANT WITH SMART CONTENT? Hi there! I m Angela with HubSpot Academy. This class is going to teach you all about planning content for different segmentations of users. Segmentation

More information

BUYER S GUIDE WEBSITE DEVELOPMENT

BUYER S GUIDE WEBSITE DEVELOPMENT BUYER S GUIDE WEBSITE DEVELOPMENT At Curzon we understand the importance of user focused design. EXECUTIVE SUMMARY This document is designed to provide prospective clients with a short guide to website

More information

epromo Guidelines DUE DATES NOT ALLOWED PLAIN TEXT VERSION

epromo Guidelines DUE DATES NOT ALLOWED PLAIN TEXT VERSION epromo Guidelines HTML Maximum width 700px (length = N/A) Image resolution should be 72dpi Maximum total file size, including all images = 200KB Only use inline CSS, no stylesheets Use tables, rather than

More information

HTML and CSS a further introduction

HTML and CSS a further introduction HTML and CSS a further introduction By now you should be familiar with HTML and CSS and what they are, HTML dictates the structure of a page, CSS dictates how it looks. This tutorial will teach you a few

More information

Internet Programming 1 ITG 212 / A

Internet Programming 1 ITG 212 / A Internet Programming 1 ITG 212 / A Lecture 10: Cascading Style Sheets Page Layout Part 2 1 1 The CSS Box Model top margin top border top padding left margin left border left padding Content right padding

More information

Brunch & Learn: Design Best Practices for Desktop, Mobile, Tablet & Beyond

Brunch & Learn:  Design Best Practices for Desktop, Mobile, Tablet & Beyond Brunch & Learn: Email Design Best Practices for Desktop, Mobile, Tablet & Beyond November 7, 2013 A special thank you to: Thank you for joining us we will be starting at 12:30 PM ET/9:30 AM PT If you are

More information

CURZON PR BUYER S GUIDE WEBSITE DEVELOPMENT

CURZON PR BUYER S GUIDE WEBSITE DEVELOPMENT CURZON PR BUYER S GUIDE WEBSITE DEVELOPMENT Website Development WHAT IS WEBSITE DEVELOPMENT? This is the development of a website for the Internet (World Wide Web) Website development can range from developing

More information

Designing Personalized Experiences For Your Brand

Designing Personalized Experiences For Your Brand THE ULTIMATE GUIDE TO: Designing Personalized Experiences For Your Brand Ashton Landry & Amie Levasseur THE PERSONALIZATION SUMMIT 2017 Designing Personalized Experiences For Your Brand Have you ever seen

More information

Building Better s. Contents

Building Better  s. Contents Building Better Emails Contents Building Better Emails... 1 Email Marketing Basics... 2 How to Optimize HTML Emails... 2 Using OnContact to Send Email Campaigns rather than your regular email address or

More information

DESIGNING RESPONSIVE DASHBOARDS. Best Practices for Building Responsive Analytic Applications

DESIGNING RESPONSIVE DASHBOARDS. Best Practices for Building Responsive Analytic Applications DESIGNING RESPONSIVE DASHBOARDS Best Practices for Building Responsive Analytic Applications CONTENTS Responsive Design and Embedded Analytics...1 6 Principles and Best Practices... 2 Tools of the Trade...

More information

Using Dreamweaver CC. Logo. 4 Creating a Template. Page Heading. Page content in this area. About Us Gallery Ordering Contact Us Links

Using Dreamweaver CC. Logo. 4 Creating a Template. Page Heading. Page content in this area. About Us Gallery Ordering Contact Us Links Using Dreamweaver CC 4 Creating a Template Now that the main page of our website is complete, we need to create the rest of the pages. Each of them will have a layout that follows the plan shown below.

More information

The Ultimate YouTube SEO Guide: Tips & Tricks on How to Increase Views and Rankings for your Online Videos

The Ultimate YouTube SEO Guide: Tips & Tricks on How to Increase Views and Rankings for your Online Videos The Ultimate YouTube SEO Guide: Tips & Tricks on How to Increase Views and Rankings for your Online Videos The Ultimate App Store Optimization Guide Summary 1. Introduction 2. Choose the right video topic

More information

Tips and Techniques for Designing the Perfect Layout with SAS Visual Analytics

Tips and Techniques for Designing the Perfect Layout with SAS Visual Analytics SAS2166-2018 Tips and Techniques for Designing the Perfect Layout with SAS Visual Analytics Ryan Norris and Brian Young, SAS Institute Inc., Cary, NC ABSTRACT Do you want to create better reports but find

More information

to Successful Marketing in 2018

to Successful  Marketing in 2018 R The A M P O D A to Successful Email Marketing in 2018 Table of Contents Introduction Subject Lines Interactive Body Content Newsletters Images CTAs Personalization Curation Branding Mobile- Responsiveness

More information

1. Please, please, please look at the style sheets job aid that I sent to you some time ago in conjunction with this document.

1. Please, please, please look at the style sheets job aid that I sent to you some time ago in conjunction with this document. 1. Please, please, please look at the style sheets job aid that I sent to you some time ago in conjunction with this document. 2. W3Schools has a lovely html tutorial here (it s worth the time): http://www.w3schools.com/html/default.asp

More information

Pricing Guide.

Pricing Guide. Pricing Guide www.benchmarkemail.com Layouts Blocks Global Styles Create & Send Responsive, Mobile Friendly Emails Get Signups with Signup Forms & Autoresponders Real-time Reports Best Support in the Industry

More information

Viewports. Peter-Paul Koch DevReach, 13 November 2017

Viewports. Peter-Paul Koch   DevReach, 13 November 2017 Viewports Peter-Paul Koch http://quirksmode.org http://twitter.com/ppk DevReach, 13 November 2017 or: Why responsive design works Peter-Paul Koch http://quirksmode.org http://twitter.com/ppk DevReach,

More information

MARKETING VOL. 1

MARKETING VOL. 1 EMAIL MARKETING VOL. 1 TITLE: Email Promoting: What You Need To Do Author: Iris Carter-Collins Table Of Contents 1 Email Promoting: What You Need To Do 4 Building Your Business Through Successful Marketing

More information

THE HOME BUILDER S GUIDE TO. Mastering New Home Marketing with Your CRM

THE HOME BUILDER S GUIDE TO. Mastering New Home Marketing with Your CRM THE HOME BUILDER S GUIDE TO Mastering New Home Marketing with Your CRM Table of Contents Introduction 1 Capture Every Lead Automatically 2 Email Marketing 3 Email & Website Analytics 6 Nurturing Leads

More information

Whitepaper. From Address

Whitepaper. From Address Whitepaper From Address The From Address Companies put a lot of effort in creating beautiful and compelling email campaigns. But when your recipients don t open the email, all the hard work that s put

More information

ONLINE EVALUATION FOR: Company Name

ONLINE EVALUATION FOR: Company Name ONLINE EVALUATION FOR: Company Name Address Phone URL media advertising design P.O. Box 2430 Issaquah, WA 98027 (800) 597-1686 platypuslocal.com SUMMARY A Thank You From Platypus: Thank you for purchasing

More information

MicroStrategy Academic Program

MicroStrategy Academic Program MicroStrategy Academic Program Creating a center of excellence for enterprise analytics and mobility. HOW TO DEPLOY ENTERPRISE ANALYTICS AND MOBILITY ON AWS APPROXIMATE TIME NEEDED: 1 HOUR In this workshop,

More information

Social Media. Best practice template and general guidance leaflet

Social Media. Best practice template and general guidance leaflet Social Media Best practice template and general guidance leaflet This leaflet is produced by members of and on behalf of the Marketing, PR and Communications Committee Rotary District 1220, United Kingdom.

More information

A Guide to Using WordPress + RAVEN5. v 1.4 Updated May 25, 2018

A Guide to Using WordPress + RAVEN5. v 1.4 Updated May 25, 2018 + v 1.4 Updated May 25, 2018 Table of Contents 1. Introduction...................................................................................3 2. Logging In.....................................................................................4

More information

Modular: Shopify Theme

Modular: Shopify Theme Modular: Shopify Theme Table of Contents Introduction 2 Top Bar 2 Header/Branding 3 Main Navigation 3 Backgrounds 4 Global Colors 4 Fonts 4 Home Slideshow 5 Home 6 Collection Pages 6 Product Pages 7 Blog

More information

VIDEO 1: WHY ARE INBOUND WEBSITES IMPORTANT?

VIDEO 1: WHY ARE INBOUND WEBSITES IMPORTANT? VIDEO 1: WHY ARE INBOUND WEBSITES IMPORTANT? Hi there! I m Angela with HubSpot Academy. In this class, we will be discussing how to use website pages as a part of your inbound marketing strategy. Think

More information

TURN DATA INTO ACTIONABLE INSIGHTS. Google Analytics Workshop

TURN DATA INTO ACTIONABLE INSIGHTS. Google Analytics Workshop TURN DATA INTO ACTIONABLE INSIGHTS Google Analytics Workshop The Value of Analytics Google Analytics is more than just numbers and stats. It tells the story of how people are interacting with your brand

More information

NCR Customer Connect Working with Templates: ADVANCED

NCR Customer Connect Working with Templates: ADVANCED NCR Customer Connect Working with Templates: ADVANCED Adding Your Logo to an Image Banner... 2 Mixed 2 Column + 1 Column Template... 4 Changing the Body-Separator Color... 6 Changing the Template Border

More information

Creating an with Constant Contact. A step-by-step guide

Creating an  with Constant Contact. A step-by-step guide Creating an Email with Constant Contact A step-by-step guide About this Manual Once your Constant Contact account is established, use this manual as a guide to help you create your email campaign Here

More information

Getting Help...71 Getting help with ScreenSteps...72

Getting Help...71 Getting help with ScreenSteps...72 GETTING STARTED Table of Contents Onboarding Guides... 3 Evaluating ScreenSteps--Welcome... 4 Evaluating ScreenSteps--Part 1: Create 3 Manuals... 6 Evaluating ScreenSteps--Part 2: Customize Your Knowledge

More information

CS7026 Media Queries. Different Screen Size Different Design

CS7026 Media Queries. Different Screen Size Different Design CS7026 Media Queries Different Screen Size Different Design Introduction Users no longer view web content only on traditional desktop systems, but are increasingly using smartphones, tablets, and other

More information

What do we mean by layouts?

What do we mean by layouts? What do we mean by layouts? A layout is how you position the elements of your page You can have columns Move paragraphs and sections around And you can do this all without changing the content of your

More information

CSS worksheet. JMC 105 Drake University

CSS worksheet. JMC 105 Drake University CSS worksheet JMC 105 Drake University 1. Download the css-site.zip file from the class blog and expand the files. You ll notice that you have an images folder with three images inside and an index.html

More information

Key questions to ask before commissioning any web designer to build your website.

Key questions to ask before commissioning any web designer to build your website. Key questions to ask before commissioning any web designer to build your website. KEY QUESTIONS TO ASK Before commissioning a web designer to build your website. As both an entrepreneur and business owner,

More information

A quick guide to... Split-Testing

A quick guide to... Split-Testing A quick guide to... Split-Testing In this guide... Learn how you can get the best results from your email campaign by testing it first! Just create up to five messages, with different personalization techniques,

More information

Autoresponder Secrets Page 1

Autoresponder Secrets Page 1 Autoresponder Secrets Page 1 Table of Contents Introduction... 3 Why You Need An Autoresponder... 5 Securing Your Autoresponder Marketing System... 7 Top Autoresponder Providers... 11 Moving Forward...

More information

Your PIN structor. It works! Why pin? Important! Today, you ll learn 16 tips to help you pin with a purpose!

Your PIN structor. It works! Why pin? Important! Today, you ll learn 16 tips to help you pin with a purpose! Your PIN structor Alice Henneman, MS, RDN University of Nebraska Lincoln Extension ahenneman@unl.edu Pinterest.com/UNLfoodfitness Important! The information in these slides was current as of 7/4/2015.

More information

mobile friendly? Google s survey shows there are three key points to a mobile-friendly site:

mobile friendly? Google s survey shows there are three key points to a mobile-friendly site: 1. Is your site mobile friendly? Now more than ever before it is important for your website to be mobile-friendly. According to a July 2012 Google survey of the more than 1,000 smartphone users people

More information

2013 Association Marketing Benchmark Report

2013 Association  Marketing Benchmark Report 2013 Association Email Marketing Benchmark Report Part I: Key Metrics 1 TABLE of CONTENTS About Informz.... 3 Introduction.... 4 Key Findings.... 5 Overall Association Metrics... 6 Results by Country of

More information

A Quick Introduction to the Genesis Framework for WordPress. How to Install the Genesis Framework (and a Child Theme)

A Quick Introduction to the Genesis Framework for WordPress. How to Install the Genesis Framework (and a Child Theme) Table of Contents A Quick Introduction to the Genesis Framework for WordPress Introduction to the Genesis Framework... 5 1.1 What's a Framework?... 5 1.2 What's a Child Theme?... 5 1.3 Theme Files... 5

More information

CS Multimedia and Communications. Lab 06: Webpage Tables and Image Links (Website Design part 3 of 3)

CS Multimedia and Communications. Lab 06: Webpage Tables and Image Links (Website Design part 3 of 3) CS 1033 Multimedia and Communications Lab 06: Webpage Tables and Image Links (Website Design part 3 of 3) REMEMBER TO BRING YOUR MEMORY STICK TO EVERY LAB! Table Properties Reference Guide The Property

More information

Using Adobe Contribute 4 A guide for new website authors

Using Adobe Contribute 4 A guide for new website authors Using Adobe Contribute 4 A guide for new website authors Adobe Contribute allows you to easily update websites without any knowledge of HTML. This handout will provide an introduction to Adobe Contribute

More information

Product Overview. Get more customers, reviews, and referrals with smart local marketing.

Product Overview. Get more customers, reviews, and referrals with smart local marketing. Product Overview Get more customers, reviews, and referrals with smart local marketing. What We Do Signpost is the most effective marketing solution for local businesses Automated Marketing We are the

More information

Marketing Best Practices

Marketing Best Practices Email Marketing Best Practices Email Best Practices Email Marketing Metrics Churn Metrics - How to reduce unsubscribes? Why segmentation matters? Increase Open Rates & Click-through Rates Beware of SPAM

More information

Digital Marketing Manager, Marketing Manager, Agency Owner. Bachelors in Marketing, Advertising, Communications, or equivalent experience

Digital Marketing Manager, Marketing Manager, Agency Owner. Bachelors in Marketing, Advertising, Communications, or equivalent experience Persona name Amanda Industry, geographic or other segments B2B Roles Digital Marketing Manager, Marketing Manager, Agency Owner Reports to VP Marketing or Agency Owner Education Bachelors in Marketing,

More information

Web Hosting. Important features to consider

Web Hosting. Important features to consider Web Hosting Important features to consider Amount of Storage When choosing your web hosting, one of your primary concerns will obviously be How much data can I store? For most small and medium web sites,

More information

Measuring and Tracking Results: 3 Step Starter. Content Marketing. and Tracking Results: 3 Step Starter. Share this guide:

Measuring and Tracking  Results: 3 Step Starter. Content Marketing. and Tracking Results: 3 Step Starter. Share this guide: Measuring and Tracking Email Results: 3 Step Starter Content Marketing 1 Measuring and Tracking Results: 3 Step Starter Share this guide: Table of Contents Introduction 3 Step 1: Make Sense Out of the

More information

Viewports. Peter-Paul Koch CSS Day, 4 June 2014

Viewports. Peter-Paul Koch   CSS Day, 4 June 2014 Viewports Peter-Paul Koch http://quirksmode.org http://twitter.com/ppk CSS Day, 4 June 2014 or: Why responsive design works Peter-Paul Koch http://quirksmode.org http://twitter.com/ppk CSS Day, 4 June

More information

How to actively build inbound enquiry. ebook

How to actively build inbound enquiry. ebook How to actively build inbound enquiry ebook You know it s important HOW TO ACTIVELY BUILD INBOUND ENQUIRY... Businesses spend thousands of dollars every month on PR, advertising and at times, elaborate

More information

COMSC-030 Web Site Development- Part 1. Part-Time Instructor: Joenil Mistal

COMSC-030 Web Site Development- Part 1. Part-Time Instructor: Joenil Mistal COMSC-030 Web Site Development- Part 1 Part-Time Instructor: Joenil Mistal Chapter 9 9 Working with Tables Are you looking for a method to organize data on a page? Need a way to control our page layout?

More information

Advanced Training Manual: Surveys Last Updated: October 2013

Advanced Training Manual: Surveys Last Updated: October 2013 Advanced Training Manual: Surveys Last Updated: October 2013 Advanced Training Manual: Surveys Page 1 of 28 Table of Contents Introduction Training Objective Surveys Overview Survey Table Survey Options

More information

every Website Packages

every Website Packages every every Website Packages So you ve decided you need a new website.. Congratulations! It s a big step venturing into the rabbit hole of the interwebs and you don t want to take a wrong turn. We love

More information

A quick guide to. Getting Started

A quick guide to. Getting Started A quick guide to Getting Started In this guide... Learn how to build your list, create engaging email messages, and convert contacts into customers, using industry-leading GetResponse features. Table of

More information

Before you begin, make sure you have the images for these exercises saved in the location where you intend to create the Nuklear Family Website.

Before you begin, make sure you have the images for these exercises saved in the location where you intend to create the Nuklear Family Website. 9 Now it s time to challenge the serious web developers among you. In this section we will create a website that will bring together skills learned in all of the previous exercises. In many sections, rather

More information

Dreamweaver Basics Workshop

Dreamweaver Basics Workshop Dreamweaver Basics Workshop Robert Rector idesign Lab - Fall 2013 What is Dreamweaver? o Dreamweaver is a web development tool o Dreamweaver is an HTML and CSS editor o Dreamweaver features a WYSIWIG (What

More information

Oracle Eloqua s User Guide

Oracle Eloqua  s User Guide http://docs.oracle.com Oracle Eloqua Emails User Guide 2018 Oracle Corporation. All rights reserved 11-Jan-2018 Contents 1 Emails Overview 6 2 Examples of emails 7 3 Creating emails 19 4 Email authoring

More information

Grow Your Business with & Social Media

Grow Your Business with  & Social Media Grow Your Business with Email & Social Media Simple Marketing Strategy for Small Business and Nonprofits Constant Contact 2016 Welcome Pam Wood Constant Contact Solution Provider/Authorized Local Expert

More information

Windows 10 Creators Edition Tips & Tricks. These New Hidden Features Will Save You Time and Money

Windows 10 Creators Edition Tips & Tricks. These New Hidden Features Will Save You Time and Money Windows 10 Creators Edition Tips & Tricks These New Hidden Features Will Save You Time and Money In April 2017, Microsoft released the new Windows 10 Creators Edition. Its features will save you hours

More information

REDESIGNING YOUR WEBSITE USING ONLINE PRESENCE BUILDER CUSTOMER USER GUIDE

REDESIGNING YOUR WEBSITE USING ONLINE PRESENCE BUILDER CUSTOMER USER GUIDE REDESIGNING YOUR WEBSITE USING ONLINE PRESENCE BUILDER CUSTOMER USER GUIDE 1 CONTENTS 1 GETTING STARTED...3 2 PLANNING...4 3 BACKING UP YOUR WEBSITE...5 4 REFRESHING YOUR WEBSITE...6 4.1 SETTING UP YOUR

More information

Responsive Web Design Discover, Consider, Decide

Responsive Web Design Discover, Consider, Decide Responsive Web Design Discover, Consider, Decide Responsive Web Design. Discover, Consider, Decide Q. What is Responsive Design? A. Responsive design is a general mindset where you are designing a website,

More information

Whitepaper. Statistics

Whitepaper. Statistics Whitepaper Statistics Statistics Email marketing is still one of the most effective marketing tools digital marketers have at their disposal. On average a person has 1.9 email accounts, which are more

More information

Google Analytics. Gain insight into your users. How To Digital Guide 1

Google Analytics. Gain insight into your users. How To Digital Guide 1 Google Analytics Gain insight into your users How To Digital Guide 1 Table of Content What is Google Analytics... 3 Before you get started.. 4 The ABC of Analytics... 5 Audience... 6 Behaviour... 7 Acquisition...

More information

7th Annual. LOOKBOOK The Modular Approach to Modern Digital Marketing

7th Annual. LOOKBOOK The Modular Approach to Modern Digital Marketing 7th Annual LOOKBOOK The Modular Approach to Modern Digital Marketing 7th Annual LookBook 2 INTRODUCTION Welcome to the seventh annual LookBook, when we take time to celebrate our customers digital marketing

More information

In today s video I'm going show you how you can set up your own online business using marketing and affiliate marketing.

In today s video I'm going show you how you can set up your own online business using  marketing and affiliate marketing. Hey guys, Diggy here with a summary of part two of the four part free video series. If you haven't watched the first video yet, please do so (https://sixfigureinc.com/intro), before continuing with this

More information

Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller

Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller Table of Contents Introduction!... 1 Part 1: Entering Data!... 2 1.a: Typing!... 2 1.b: Editing

More information

Oracle Eloqua s User Guide

Oracle Eloqua  s User Guide http://docs.oracle.com Oracle Eloqua Emails User Guide 2017 Oracle Corporation. All rights reserved 08-Dec-2017 Contents 1 Emails Overview 6 2 Examples of emails 7 3 Creating emails 19 4 Email authoring

More information

c122sep2214.notebook September 22, 2014

c122sep2214.notebook September 22, 2014 This is using the border attribute next we will look at doing the same thing with CSS. 1 Validating the page we just saw. 2 This is a warning that recommends I use CSS. 3 This caused a warning. 4 Now I

More information

NinthDecimal Mobile Audience Q Insights Report

NinthDecimal Mobile Audience Q Insights Report Q3 2013 Insights Report Research Overview Device Ownership and Usage 2 Consumer CPG Path to Purchase Behaviors 3-11 Mobile Ad Performance 12-13 Connected Device Trends & Adoption 14-15 Worldwide Location

More information

ORB Education Quality Teaching Resources

ORB Education Quality Teaching Resources These basic resources aim to keep things simple and avoid HTML and CSS completely, whilst helping familiarise students with what can be a daunting interface. The final websites will not demonstrate best

More information

AGENT123. Full Q&A and Tutorials Table of Contents. Website IDX Agent Gallery Step-by-Step Tutorials

AGENT123. Full Q&A and Tutorials Table of Contents. Website IDX Agent Gallery Step-by-Step Tutorials AGENT123 Full Q&A and Tutorials Table of Contents Website IDX Agent Gallery Step-by-Step Tutorials WEBSITE General 1. How do I log into my website? 2. How do I change the Meta Tags on my website? 3. How

More information

Table Basics. The structure of an table

Table Basics. The structure of an table TABLE -FRAMESET Table Basics A table is a grid of rows and columns that intersect to form cells. Two different types of cells exist: Table cell that contains data, is created with the A cell that

More information

HOW TO CHOOSE THE BEST MARKETING PRODUCT? zoho.com/campaigns

HOW TO CHOOSE THE BEST  MARKETING PRODUCT? zoho.com/campaigns HOW TO CHOOSE THE BEST EMAIL MARKETING PRODUCT? zoho.com/campaigns EMAIL MARKETING CAMPAIGNS - AN INSIGHT Emails can do much more for your business than you may think. Marketing campaigns can bring you

More information

Hello! by Arash Khosravian & Farhad Beheshti. from Anetwork

Hello! by Arash Khosravian & Farhad Beheshti. from Anetwork Email Marketing Hello! by Arash Khosravian & Farhad Beheshti from Anetwork 1 Why Email? PEOPLE HAVE DRAMATICALLY CHANGED HOW THEY LIVE AND WORK. In traditional marketing, companies focus on finding customers

More information

Repurposing Your Podcast. 3 Places Your Podcast Must Be To Maximize Your Reach (And How To Use Each Effectively)

Repurposing Your Podcast. 3 Places Your Podcast Must Be To Maximize Your Reach (And How To Use Each Effectively) Repurposing Your Podcast 3 Places Your Podcast Must Be To Maximize Your Reach (And How To Use Each Effectively) What You ll Learn What 3 Channels (Besides itunes and Stitcher) Your Podcast Should Be On

More information

CheckBook Pro 2 Help

CheckBook Pro 2 Help Get started with CheckBook Pro 9 Introduction 9 Create your Accounts document 10 Name your first Account 11 Your Starting Balance 12 Currency 13 We're not done yet! 14 AutoCompletion 15 Descriptions 16

More information

Dreamweaver Tutorials Working with Tables

Dreamweaver Tutorials Working with Tables Dreamweaver Tutorials This tutorial will explain how to use tables to organize your Web page content. By default, text and other content in a Web page flow continuously from top to bottom in one large

More information

Playbook. The Media, Publishing & Entertainment Marketer s Playbook

Playbook. The Media, Publishing & Entertainment  Marketer s Playbook Playbook The Media, Publishing & Entertainment Email Marketer s Playbook The Media, Publishing & Entertainment Consumer Email marketing has entered a new era of innovation, allowing marketers in the media,

More information

How to Select the Right Marketing Cloud Edition

How to Select the Right Marketing Cloud Edition How to Select the Right Marketing Cloud Edition Email Studio, Mobile Studio, and Web Studio ith Salesforce Marketing Cloud, marketers have one platform to manage 1-to-1 customer journeys through the entire

More information

Meet our Example Buyer Persona Adele Revella, CEO

Meet our Example Buyer Persona Adele Revella, CEO Meet our Example Buyer Persona Adele Revella, CEO 685 SPRING STREET, NO. 200 FRIDAY HARBOR, WA 98250 W WW.BUYERPERSONA.COM You need to hear your buyer s story Take me back to the day when you first started

More information

Full Website Audit. Conducted by Mathew McCorry. Digimush.co.uk

Full Website Audit. Conducted by Mathew McCorry. Digimush.co.uk Full Website Audit Conducted by Mathew McCorry Digimush.co.uk 1 Table of Contents Full Website Audit 1 Conducted by Mathew McCorry... 1 1. Overview... 3 2. Technical Issues... 4 2.1 URL Structure... 4

More information

A guide to GOOGLE+LOCAL. for business. Published by. hypercube.co.nz

A guide to GOOGLE+LOCAL. for business. Published by. hypercube.co.nz A guide to GOOGLE+LOCAL for business Published by hypercube.co.nz An introduction You have probably noticed that since June 2012, changes have been taking place with the local search results appearing

More information

Campaign page templates

Campaign page templates Campaign Page Campaign page templates The campaign page templates have been built for marketing campaigns which require a landing experience that cannot be supported by the Product Detail Page templates

More information

All-In-One Cloud-Based Blaster

All-In-One Cloud-Based  Blaster All-In-One Cloud-Based Email Blaster Page 1 Index 04 What is Email Magix 05 How Email Magix Works 06 Email Magix Features 08 Email Design Features 10 Email Campaign Features 13 Autoresponder Features 14

More information

ProServeIT Corporation Century Ave. Mississauga, ON L5N 6A4 T: TF: F: W: ProServeIT.

ProServeIT Corporation Century Ave. Mississauga, ON L5N 6A4 T: TF: F: W: ProServeIT. 1 Table of Contents POST #1... 3 Why Use a SharePoint Content Management System? A Quick Guide for Executives & Managers [Downloadable Infographic]... 3 POST #2... 5 Branding SharePoint 6 Ways to Brand

More information

Breakdown of Some Common Website Components and Their Costs.

Breakdown of Some Common Website Components and Their Costs. Breakdown of Some Common Website Components and Their Costs. Breakdown of Some Common Website Components and Their Costs. The cost of a website can vary dramatically based on the specific components included.

More information

Marketing 101 Whitepaper

Marketing 101 Whitepaper Email Marketing 101 Whitepaper Introduction Email Marketing is an essential part of an organization s communications strategy. As social media and mobile usage continue to rise on the list of ways to communicate

More information

Insights JiWire Mobile Audience Insights Report Q2 2013

Insights JiWire Mobile Audience Insights Report Q2 2013 Insights JiWire Mobile Audience Insights Report Key Insights Retail Research & Purchase Behaviors 2-5 Consumer-Brand Engagement 6-10 25 % increase in in-store mobile device usage 64 % 80 % Connected Device

More information

USING DRUPAL. Hampshire College Website Editors Guide https://drupal.hampshire.edu

USING DRUPAL. Hampshire College Website Editors Guide https://drupal.hampshire.edu USING DRUPAL Hampshire College Website Editors Guide 2014 https://drupal.hampshire.edu Asha Kinney Hampshire College Information Technology - 2014 HOW TO GET HELP Your best bet is ALWAYS going to be to

More information

Creating an with Constant Contact. A step-by-step guide

Creating an  with Constant Contact. A step-by-step guide Creating an Email with Constant Contact A step-by-step guide About this Manual Once your Constant Contact account is established, use this manual as a guide to help you create your email campaign Here

More information

Creating a CSS driven menu system Part 1

Creating a CSS driven menu system Part 1 Creating a CSS driven menu system Part 1 How many times do we see in forum pages the cry; I ve tried using Suckerfish, I ve started with Suckerfish and made some minor changes but can t get it to work.

More information

ShowMe Guides OpenCart 1.5 User Manual Ebooks Free

ShowMe Guides OpenCart 1.5 User Manual Ebooks Free ShowMe Guides OpenCart 1.5 User Manual Ebooks Free Revised and fully updated for 2013, and includes a subscription for free "What's New?" Updaters each time OpenCart is updated so your book is always current!

More information

INTEGRATE MOBILE MESSAGING INTO YOUR MARKETING MIX TO DRIVE IMMEDIATE ROI. Learn more

INTEGRATE MOBILE MESSAGING INTO YOUR MARKETING MIX TO DRIVE IMMEDIATE ROI. Learn more INTEGRATE MOBILE MESSAGING INTO YOUR MARKETING MIX TO DRIVE IMMEDIATE ROI Learn more www.outspoken.com @getoutspoken! BRANDS EMBRACING TEXT MESSAGE MARKETING Text message marketing boasts up to a 45% ROI

More information