HOW TO Build an HTML5 Pushdown Banner

Size: px
Start display at page:

Download "HOW TO Build an HTML5 Pushdown Banner"

Transcription

1 (/hc/en-us) Help Center Platform MDX 2.0 Contact Support (/hc/en-us/requests/new) SIZMEKSUPPORT Sizmek Help Center (/hc/en-us)» Ad Formats and Placement Types (/hc/en-us/categories/ creative-building-ads-ad-formats-and-placement-types)» HTML5 Creative Features and Formats (/hc/en-us/sections/ html5-creative-features-and-formats) HOW TO Build an HTML5 Pushdown Banner Enter a question, keyword or top Last + FOLLOW (/HC/EN-US/ARTICLES/ HOWTO-GLOSSARY-BUILD-AN-HTML5-PUSHDOWN-BANNER/SUBSCRIPTION) Update: May 26, :12 Table of Contents Introduction Introduction Overview HTML5 Pushdown Banne Overview Important: This is the build guide for the Pushdown that is based on the HTML5 Single Expandable and has only a single banner (no panels). For your ads, you must use the HTML5 Pushdown Banner format on the platform and NOT the HTML5 Pushdown. The HTML5 Pushdown Banner is an expandable banner that pushes site content down as the ad expands. The banner state and expanded state share the same asset and there are no additional panels. It is based on the HTML5 Single Expandable Base format. The ad loads in the collapsed state and can be expanded by clicking the Expand button. Since publisher content is pushed down, the user will still be able to view the entire site after expansion. From the expanded state, the user may either click the UserAction button, the ClickThrough button, or close the ad and return to the collapsed state. Clicking the UserAction button sends a custom interaction and is tracked in reports. Some pushdown templates contain a video player, which is set up to track video interactions. Dimensions HTML5 Full Screen Pushd Dimensions Supported Platforms Format Properties Demos/Download Implementing HTML5 Pushdown Banner using Workspaces Some publishers allow pushdown banners to expand automatically for a certain number of times in a given time period. For example, some publishers allow the pushdown to auto-expand once per day per unique user while others may only allow one auto-expansion per campaign per unique user. Many publishers also require the pushdown to collapse automatically 7 10 seconds after it auto-expands. The pushdown template includes a script that you can customize to enable this functionality. You can choose how often the banner should auto-expand, and how long it should stay open before it auto-collapses. You can also choose to cancel the auto-collapse if the user engages with the expanded panel. This capability is explained in further detail in the section on Auto Expand Frequency Capping. While the HTML5 Pushdown Banner can be customized to any size, templates with common sizes have been provided. Templates that expand to full screen use the entire space available in the browser while centering expanded content. See below for complete list of templates available: HTML5 Pushdown Banner Dimensions BANNER SIZE EXPANDED SIZE VIDEO 970x66 970x418 No 970x66 970x418 Yes HTML5 Full Screen Pushdown Dimensions BANNER SIZE VIDEO 320x50 No 320x50 Yes The following illustrations show the collapsed and expanded states of the 970x66 to 970x418 pushdown with video.

2 The following illustrations show the collapsed and expanded states of the 320x50 to full-screen pushdown with video. Supported Platforms PLATFORM SUPPORTED VERSION Windows Internet Explorer 10+, Firefox, Chrome, Safari, Edge Mac Safari, Firefox, Chrome Tablets and Phones ipad and iphone with ios 8 and up Android Tablet and Phone with Android 4.1 and up Surface Tablet and Phone 8.0 and up Format Properties Listed below are common properties available to the format. FEATURE Polite Loading SUPPORTED Safeframe Support MRAID (in APP Support)

3 1 AdKit-ready Programmatic (One-Tag Solution) Secure Serving Sizmek Advertising Suite Support Ad Builder Templates Available Demos/Download To download a template, view a demo of the HTML5 Pushdown Banner templates or get the latest copy of the build guide, please visit the Ad Formats tab of the Sizmek Showcase (http: /showcase.sizmek.com/formats/). For more information, contact your Creative Services Engineer. Implementing HTML5 Pushdown Banner using Workspaces Before you Begin Make sure you have the HTML5 Pushdown Banner format workspace that is applicable for your campaign. Download the workspace from the Formats tab of the Showcase and extract it, preserving the directory structure. Included Template Files All the assets file are same between both the templates, the only difference is the banner dimensions. HTML The following HTML5 template files are included. FILE NAME index.html The ad file, with the ad configuration and initialization code. CSS The following CSS template files are included. FILE NAME styles/style.css The style sheet for the ad and its elements. Scripts The following JavaScript template files are included. FILE NAME pushdown_banner.js Minified code required for the format. Images The following image template files included in the images folder. FILE NAME images/backup.jpg Backup image for ad. images/logo.png Logo image asset file. images/poster.png Poster image for the video. (video template only). Videos The following video template files are included in the videos folder.

4 FILE NAME videos/video.mp4 Demo videos in mp4 format. (video template only) videos/video.webm The webm video for Firefox Customizing the HTML5 Pushdown Banner All of the HTML5 Pushdown Banner functionality is programmed in the template files. At minimum, the only changes you will need to make are to the loaded image and video assets and their respective styles. When updating or replacing images or videos, make sure to also update references to their filenames and dimensions found in index.html and style.css as necessary. To update the layout and design of a template, open the index.html and style.css files in a text editor.the index.html also contains JavaScript that can be modified to change or extend functionality. Variables VARIABLE NAME addiv, bannerdiv, expansiondiv Global variable(s) that will be used for define the HTML objects later. You may add/edit/remove the variable(s) if modify the HTML objects. Functions FUNCTION NAME initeb Ensures EB is initialized before starting the ad. startad Starts the ad. expand Expands the ad. collapse Collapses the ad. handleexpandbuttonclick Handles the expand button click. handleclosebuttonclick Handles the close button click. handleclickthroughbuttonclick Handles the click-through button click. handleuseractionbuttonclick Handles the user-action button click. The functions expand and collapse should not be renamed or replaced as they are sometimes called from the publisher. The full-screen templates also include the following functions: FUNCTION NAME gotofullscreensize Expand the ad to full-screen width and height. gotocollapsedsize Collapse the ad to its original size. restrictscrolling Prevent the user from scrolling away from the ad. unrestrictscrolling Allow the user to scroll freely. scrolltocontainertopleft Scroll to the top left corner of the ad. setmessageterminal Handles communication with the full-screen custom script.

5 If you would like to change the duration of the expansion and collapse animation, change the collapseduration and expandduration variables. This time is measured in milliseconds, so a 1 second animation use a value of If you would not like the expansion to animate, set the variables to 0. Auto Expand Frequency Capping Many publishers and networks allow pushdowns to expand automatically once in a given time period. For example, you may be allowed to auto-expand once per day, or once per campaign. If you want this functionality, include the following script in the head of your HTML: script type="text/javascript" src=" ds.servingsys.com/burstingres/customscripts/html5_auto_expand_frequency_capping_adkit.js"></script> You can then set your auto-collapse settings using JavaScript. The settings below set the ad to auto-expand once per campaign, then auto-collapse after 7000 milliseconds, or 7 seconds. var autoexpandsettings = { isenabled: true, frequency: EB.autoExpandFrequencyCapping.Frequencies.CAMPAIGN, expansionsperperiod: 1, timeuntilautocollapse: 7000 }; EB.autoExpandFrequencyCapping.initialize(autoExpandSettings); You will see that there are four properties you can set for auto-expansion. PROPERTY TYPE isenabled Boolean Determines whether auto-expansion is enabled. frequency String Determines the time period for auto-expansion (per day, per campaign, etc.). expansionsperperiod Number (integer >= 0) Determines how many times the ad auto-expands in a given time period (once per period, twice per period, etc.). timeuntilautocollapse Number (integer >= 0) The amount of time, in milliseconds, the ad can stay open before it autocollapses. Many publishers require the ad to auto-collapse after 7-10 seconds. Note: You can omit this property to prevent the ad from autocollapsing. You can then pass these settings in an object into the EB.autoExpandFrequencyCapping.initialize function. At that time, the EB.autoExpandFrequencyCapping object will determine if the ad should auto-expand. If the ad does auto-expand, the expansion will not be tracked as a user expansion. It is important to determine a period, or frequency, for auto-expansion. Some publishers allow you to auto-expand on a daily basis, while others allow you to auto-expand on a campaign basis. There are multiple constants you can use to set the frequency property. The constants are contained in the EB.autoExpandFrequencyCapping.Frequencies object. For example, the constant for day is EB.autoExpandFrequencyCapping.Frequencies.DAY and the constant for campaign is EB.autoExpandFrequencyCapping.Frequencies.CAMPAIGN. The table below displays all of the options for frequencies that are available. CONSTANT LITERAL NEVER "never" Never auto-expand. SESSION "session" Auto-expand per session (per browser window or tab). DAY "day" Auto-expand per day. WEEK "week" Auto-expand per week.

6 CAMPAIGN "campaign" Auto-expand per campaign. UNLIMITED "unlimited" Auto-expand every time. You can set up callback functions to trigger when the ad auto-expands or auto-collapses. For example, you will probably want to call a function to switch to the expanded panel graphics before the ad auto-expands, and switch to collapsed banner graphics after the ad auto-collapses. Note: You must set up these event listeners before you initialize the EB.autoExpandFrequencyCapping object. Once the object is initialized it will determine whether the ad should auto-expand immediately. The code below creates a subscription to the auto-expand event. var beforeexpandsubscription = new EB.autoExpandFrequencyCapping.EventSubscription({ eventname: EB.autoExpandFrequencyCapping.Events.AUTO_EXPAND, callback: switchtoexpandedgraphics, callbackbinding: this, timing: EB.autoExpandFrequencyCapping.EventTiming.BEFORE} ); EB.autoExpandFrequencyCapping.subscribeToEvent(beforeExpandSubscription); First it creates a new EB.autoExpandFrequencyCapping.EventSubscription object. It passes an object containing a number of different properties into the constructor function. var beforeexpandsubscription = new EB.autoExpandFrequencyCapping.EventSubscription({ eventname: EB.autoExpandFrequencyCapping.Events.AUTO_EXPAND, callback: switchtoexpandedgraphics, callbackbinding: this, timing: EB.autoExpandFrequencyCapping.EventTiming.BEFORE} ); The first property is the eventname, which sets the subscription to occur when the ad auto-expands. eventname: EB.autoExpandFrequencyCapping.Events.AUTO_EXPAND The event names are constants in the EB.autoExpandFrequencyCapping.Events object, defined in the table below. CONSTANT LITERAL AUTO_EXPAND "autoexpand" The auto-expansion event. AUTO_COLLAPSE "autocollapse" The auto-collapse event. The second property is the callback function, which will be called when the event is fired. This can be any function you define. For example, you may want to pass in a function you created to switch to the expanded panel graphics. callback: switchtoexpandedgraphics, The callback function you define should not call EB.expand or EB.collapse. Those functions are automatically called by the EB.autoExpandFrequencyCapping object. Therefore, including these calls in your callbacks is redundant and will result in inaccurate reporting. The third property is the callbackbinding, which basically defines the scope that contains your callback function. In most cases, you will just want to use this as the callbackbinding. this represents your current scope. callbackbinding: this, The last property is the timing property, which determines whether your callback function will be called before or after the event. For example, you may want to switch to your expanded graphics before the panel expands, or switch to your collapsed graphics after the panel collapses. timing: EB.autoExpandFrequencyCapping.EventTiming.BEFORE} The table below shows the timing constants, which are in the EB.autoExpandFrequencyCapping.EventTiming object. CONSTANT LITERAL

7 BEFORE "before" Call the callback function before the event occurs. AFTER "after" Call the callback function after the event occurs. Finally, you need to subscribe to the event by passing the object containing all of your settings into the EB.autoExpandFrequencyCapping.subscribeToEvent function EB.autoExpandFrequencyCapping.subscribeToEvent(beforeExpandSubscription); The table below succinctly defines the properties you should pass into the EventSubcription object. PROPERTY TYPE eventname String The event you would like to subscribe to (expand or collapse). callback Function The function you would like to call when the event occurs callbackbinding Object The scope of the callback function (usually just this ). timing String Determines whether the callback function will be called just before the event or just after the event. On some occasions, you may want to prevent the ad from auto-collapsing. For example, if a user engages with content in the expanded panel, you may want to prevent the ad from auto-collapsing. You may also want to prevent the ad from auto-collapsing if the user clicks collapse and then expands again before the auto-collapse time limit has been reached. You can use the following function to cancel auto-collapse: EB.autoExpandFrequencyCapping.cancelAutoCollapse() Make sure that your publisher(s) allow(s) you to cancel auto-collapse before using this method in your ad. Please remember the following points: You must set up auto-expand and auto-collapse event listeners before you initialize your frequency capping settings. The frequency capping settings apply to each browser individually. For example, if the ad is set to auto-expand once per day, it will auto-expand once per day in each browser. If you frequency cap by session, frequency capping is not even shared between separate windows and tabs. Do not call EB.expand or EB.collapse in the callback functions for the AUTO_EXPAND or AUTO_COLLAPSE events. These functions are already called in the script. You can omit the timeuntilautocollapse variable from your frequency capping settings if you would like the ad to remain open after it auto-expands. EB Command Module Some ad networks require the ability to externally expand and collapse Sizmek ads. The EB Command Module facilitates this requirement by sending events that call the expand() and collapse() functions in the creative container to update its content appropriately. <script type="text/javascript">ebmodulestoload = ['EBCMD'];</script> This module already exists in the HTML5 Pushdown Banner template. To use other modules, such as video, add them to the EBModulesToLoad array. If you do not need this functionality, you can remove the EB Command Module by deleting EBCMD from the EBModulesToLoad array. Setting Expanded Panel Dimension EB.initExpansionParams(x, y, width, height); must be used with define values in-order for HTML5 Pushdown Banner which is base on HTML5 Single Expandable banner format to expand with its correct Panel Dimension. You may also notice that there is a EB.initPanelDimensions(x, y, width, height); in the template, this is for the HTML5 Expandable Banner base format. You can disregard this if using the HTML5 Pushdown Banner Format Understanding Full-screen Functionality

8 Reported Custom Interactions The full-screen banner templates use a function called EB._sendMessage to tell the ad to expand to full-screen. This function communicates with a custom script that resizes the ad container to the full size of the screen. This function call is shown below. EB._sendMessage('resizecontainer', {width:'full',height:'full', x:'pageleft', y:0, pushdown:true}); In the templates this function is called within the gotofullscreensize function. The function below is called to collapse the ad back to its original size. You can change the width and height properties as needed. EB._sendMessage('resizecontainer', {width:320, height:50, x:0, y:0, pushdown:true}); There is a custom script that must be applied to the ad in order for these function calls to work properly. Directions on applying this script are documented in the Setting Up an HTML5 Pushdown Banner in the platform section. You will also notice a function called setmessageterminal in the full-screen templates. This function listens for resize events and responds accordingly. For example, if the user rotates their device, it will scroll to the top of the ad after it resizes. On Android it ensures the ad resizes properly. Testing Your HTML5 Pushdown Banner To test your ad locally, open index.html in a web browser and walk through the ad experience. You can use a web-debugging tool to view the source code and any data being sent or received by the ad. Setting up HTML5 Pushdown Banner in the Sizmek Platforms Sizmek MDX2.0 Setup 1. Archive the HTML5 Pushdown Banner workspaces into ZIP files, preserving the directory structure. You can do this with WinZip, 7Zip, or another archiving program. 2. In the Sizmek MDX2.0, under Creative Assets, create new Workspace by uploading the ZIP file. 3. Under the Ads section, create ad use the workspace you have uploaded. 4. Set Ad Format to HTML5 Pushdown Banner and fill out the form. Note: On the Sizmek MDX2.0 platform, your user account will need access to the HTML5 Pushdown Banner format in the list of available custom formats. If you do not have access to this format, please reach out to Support to gain permissions for this format 5. Save the Ad. 6. Under the Advanced Features section, customize the Variables to your needs. 7. Create a new placement (https: /platform.mediamind.com/onlinehelp/mediamind/external/#2006.asp) for the Ad. 8. Fill out the form. Set the Placement type to In Banner and the Banner size to the collapsed size of your ad. Make sure This is an IM banner is cleared. After you ve saved your placement, you can then generate preview tags to test on your web site. Custom Script Notice: Since the HTML5 Pushdown Banner format is a HTML5 Custom Format, there is no need to attach a custom script since the appropriate one will be pulled in automatically. For reference, the following custom script is being used: PL_HTML5Pushdown_banner.js Note: The full URL of the script will vary depending weather the ad is served securely or insecurely. Sizmek Sizmek Advertising Suite Setup Archive the workspace into a new ZIP file, preserving the directory structure. You can do this with 1. WinZip, 7Zip, or another archiving program. 2. Click the Creative menu item > Asset Library, Upload your Workspace the chosen folder. 3. Click the Creative menu item > Ads and click the New Ad button and select New Master Ad. 4. Fill out the form. Set Ad Format to HTML5 Pushdown Banner. 5. Under Main Assets, select the Workspace folder and default image. 6. Save the ad. 7. Under the Advanced Features section, customize the variables to your needs. 8. Create a new placement (https: /platform.mediamind.com/onlinehelp/mediamind/external/#2006.asp) for the Ad. 9. Fill out the form. Set the Placement type to In Banner and the Banner size to the collapsed size of your ad. Make sure This is an IM banner is cleared. 10. After you ve saved your placement, you can then generate preview tags to test on your web site. Custom Script Notice: Since the HTML5 Pushdown Banner format is a HTML5 Custom Format, there is no need to attach a custom script since the appropriate one will be pulled in automatically. For reference, the following custom script is being used: PL_HTML5Pushdown_banner.js Note: The full URL of the script will vary depending weather the ad is served securely or insecurely.

9 Reported Custom Interactions Currently, there are no custom interactions reported in the template, however, ad developers can always add their own custom interactions by using the following call. EB.userActionCounter(); Change Log V3 Released November 20, 2012 When creating a pushdown placement, you must now use the custom script mobile_pushdown_v3 instead of the previous v2 version Adds support for breaking out of iframes so that pushdown ads can now be placed in publisher iframes. Utilizes native browser CSS3 transitions to animate the pushdown of page content (where supported). Fixed issue where Android zoomed inconsistently when rotating back and forth between portrait and landscape mode. Fixed issue where Nov 2012 MDX2.0 platform update changed placement div display to inline instead of block (introduced positioning and close button problems). V4 Released May 2, 2013 You must now use the script html5_pushdown_v1 instead of mobile_pushdown_v3. Added support for auto-expansion and frequency capping. Full-screen expansion now expands to the full width of the screen or window before pushing down. Added desktop templates. Added custom video controls and non-video templates. V5 Released August 23, 2013 You must now use the script html5_pushdown_v2 instead of html5_pushdown_v1. Fixed a bug that makes the panel Flash open before starting the expansion animation in some browsers. Rebranded the templates to be more consistent with other templates V6 Released May 15, 2014 Rebranded ad for Sizmek Removed custom controls on video player Created HTML5 Pushdown Banner ad format on Sizmek MDX2.0 Platform Prepared custom script for R&D changes to client mechanism V Released March 17, 2017 Added support for polite loading Supports Adkit Supports secure serving Known Issues In ios 7.1 Mobile Safari, using the Full Screen Template expanded in landscape mode, actions that unhide the browser user interface may disable buttons in the ad for a brief period. Was this article helpful? 0 out of 0 found this helpful

10 Have more questions? Submit a request (/hc/en-us/requests/new) (/hc/en-us/) Privacy Policy (http: / Terms of Use (http: /

/ Ver.1.0. Production Regulations

/ Ver.1.0. Production Regulations Harper s BAZAAR ONLINE 2018.07-09 / Ver.1.0 Production Regulations 1 Rectangle Banner - HTML5 1/4 Overview The HTML5 Rich banner is a format available on the Sizmek platform for a polite banner.

More information

HTML5 Creatives. MediaMath now supports HTML5 Creatives. Each T1AS HTML5 Creative must be uploaded with the following 2 components:

HTML5 Creatives. MediaMath now supports HTML5 Creatives. Each T1AS HTML5 Creative must be uploaded with the following 2 components: HTML5 Creatives MediaMath now supports HTML5 Creatives. Each T1AS HTML5 Creative must be uploaded with the following 2 components: Component HTML5 Asset Package: The zip file for the T1AS HTML5 creative.

More information

Haymarket Business Media RECRUITMENT AD SPECIFICATIONS AND STYLE GUIDE 2018

Haymarket Business Media RECRUITMENT AD SPECIFICATIONS AND STYLE GUIDE 2018 Contents Standard ad formats... 1 Rich Media Ad Units... 2 HTML5 Creatives... 3 ZIP BUNDLES... 3 STUDIO... 4 Additional information... 5 This document is subject to change Please always download the most

More information

AD SPECIFICATIONS AND STYLE GUIDE IMPORTANT INFORMATION Please ensure that all Third Party Tags are SSL compatible (see page 9)

AD SPECIFICATIONS AND STYLE GUIDE IMPORTANT INFORMATION Please ensure that all Third Party Tags are SSL compatible (see page 9) All creatives can be run through Third Party servers such as flashtalking, Sizmek, ADTECH or DFA if a file size larger than the stated amount is needed. Responsive Design Our sites have been designed to

More information

MIXPO GUIDE SERIES. Mixpo Platform User Guide: Overview of Rich Media Ad Units RICH MEDIA

MIXPO GUIDE SERIES. Mixpo Platform User Guide: Overview of Rich Media Ad Units RICH MEDIA MIXPO GUIDE SERIES Mixpo Platform User Guide: Overview of Rich Media Ad Units RICH MEDIA Welcome to Mixpo! The contents of this User Guide and appendices will help you effectively navigate the Mixpo platform

More information

New Cars - Hero Image Guidelines. High Impact Homepage. Desktop & Mobile Specifications

New Cars - Hero Image Guidelines. High Impact Homepage. Desktop & Mobile Specifications New Cars - Hero Image Guidelines High Impact Homepage Desktop & Mobile Specifications 1 Checklist PLACEMENT DEVICE DIMENSIONS (WXH) FORMAT IMAGE SIZE EXPANDED PANEL DIMENSIONS (WXH) INITIAL BANNER LOAD

More information

Sizmek Formats. HTML5 Video Wall. Build Guide

Sizmek Formats. HTML5 Video Wall. Build Guide Formats HTML5 Video Wall Build Guide Table of Contents Overview... 4 Supported Platforms... 7 Demos/Downloads... 7 Known Issues... 7 MMSlidingTab... 7 JavaScript API... 8 MMSlidingTabManager... 8 Constructor...

More information

Contents AD SPECIFICATIONS AND STYLE GUIDE 2018

Contents AD SPECIFICATIONS AND STYLE GUIDE 2018 Contents Standard ad formats... 2 Bulletins... 3 HTML5 Creatives... 4 ZIP BUNDLES... 4 STUDIO... 5 Additional information... 6 What s happening to Flash?... Error! Bookmark not defined. Please always download

More information

Pop-up. File format/ size: Must provide (.gif or.jpg) still image - max. 75KB for Mobile - max. 400KB for Tablet

Pop-up. File format/ size: Must provide (.gif or.jpg) still image - max. 75KB for Mobile - max. 400KB for Tablet Pop-up Dimensions: Mobile: 640 (W) x 960 (H) pixels Tablet Portrait - 1536 (W) x 2048 (H) pixels [For mytv SUPER only] Tablet Landscape - 2048 (W) x 1536 (H) pixels [For mytv SUPER only] File format/ size:

More information

AD SPECIFICATIONS AND STYLE GUIDE 2018

AD SPECIFICATIONS AND STYLE GUIDE 2018 Contents Standard ad formats... 1 Bulletins... 2 Rich Media Ad Units... 2 HTML5 Creatives... 3 ZIP BUNDLES... 3 STUDIO... 4 Additional information... 5 All creatives can be run through Third Party servers

More information

CREATIVE SPECIFICATIONS

CREATIVE SPECIFICATIONS CREATIVE SPECIFICATIONS Table of Contents Important Information...2 Definitions used in this Document...2 Video Testing Tools...2 Desktop Display Creatives...3 Expandable...4 In-Banner Video...5 Billboard...6

More information

MIMS Online AD SPECIFICATIONS AND STYLE GUIDE 2018

MIMS Online AD SPECIFICATIONS AND STYLE GUIDE 2018 Contents Standard ad formats... 1 Mobile Creatives... 2 Bulletin Creatives... 2 Rich Media Ad Units... 3 HTML5 Creatives... 4 ZIP BUNDLES... 4 Additional Information... 5 This document is subject to change

More information

JANUARY 2018 PRIVATE MEDIA CREATIVE SPECIFICATIONS

JANUARY 2018 PRIVATE MEDIA CREATIVE SPECIFICATIONS JANUARY 2018 PRIVATE MEDIA CREATIVE SPECIFICATIONS TABLE OF CONTENTS CREATIVE DEADLINES 3 BANNER SPECIFICATIONS 3 HTML5 ADVERTISING SPECIFICTIONS 4-6 NEWSLETTER SPECIFICATIONS 7 SKIN SPECIFICATIONS 8 MOBILE

More information

Flexible and LEAN Ads

Flexible and LEAN Ads Flexible and LEAN Ads The IAB New Ad Portfolio emphasizes LEAN (Light, Encrypted, AdChoices supported, and Non-invasive) ad experience and flexible size ad specifications. LEAN ad experience for digital

More information

Contents AD SPECIFICATIONS AND STYLE GUIDE 2017

Contents AD SPECIFICATIONS AND STYLE GUIDE 2017 Contents Standard ad formats... 1 Bulletins... 2 Rich Media Ad Units... 2 HTML5 Creatives... 3 Zip bundles... 3 Additional information... 5 This document is subject to change The creatives below run on

More information

DIGITAL AD SPECS. Rectangle 2 Dimensions: 300x250 File Size: 60 kb max. File Format: JPG, PNG, GIF. Animation: GIF; 15 sec max. Video: Yes (RRM/IBV)

DIGITAL AD SPECS. Rectangle 2 Dimensions: 300x250 File Size: 60 kb max. File Format: JPG, PNG, GIF. Animation: GIF; 15 sec max. Video: Yes (RRM/IBV) Leaderboard 1 Dimensions: 728x90 Video: Yes (RRM) Expandable: Yes ( 728x90 > 728x270 ) Rectangle 2 Dimensions: 300x250 Expandable sizes: 300x250 > 600x250 300x250 > 320x480 (mobile only) DESKTOP AD POSITIONS

More information

Apple News Apple Advertising Platforms Specifications May 2018

Apple News Apple Advertising Platforms Specifications May 2018 Apple News Apple Advertising Platforms Specifications May 2018 About Advertising on Apple News Ads on Apple News can run across iphone, ipod touch, and ipad devices. Ad options include a variety of display

More information

Technical Specifications Leaderboard + Mobile Leaderboard. 27/12/2018 Tech Specs 1

Technical Specifications Leaderboard + Mobile Leaderboard. 27/12/2018 Tech Specs 1 27/12/2018 Tech Specs 1 27/12/2018 Screenshot 2 Format Device Width*Height Extensions Max. weight Animation Clicktag Leaderboard Desktop / Tablet 728*90 HTML5/GIF/JPG 70 kb 3 loops in 15 clicktag Mobile

More information

DIGITAL AD SPECS. Rectangle Dimensions: 300x250. File Size: 60 kb Max. File Format: JPG, PNG, GIF, ad tags Animation: GIF, HTML5, 15 sec max; IBV

DIGITAL AD SPECS. Rectangle Dimensions: 300x250. File Size: 60 kb Max. File Format: JPG, PNG, GIF, ad tags Animation: GIF, HTML5, 15 sec max; IBV /3/8 DESKTOP ADS Leaderboard Dimensions: 78x90 Animation: GIF, HTML5, 5 sec max; IBV 78x90 > 78x70 Half Page Dimensions: 300x600 File Size: 60 kb Animation: GIF, HTML5, 5 sec max; IBV Expandable size:

More information

Sharper Insight. Smarter Investing Advertising Specs

Sharper Insight. Smarter Investing Advertising Specs Sharper Insight. Smarter Investing. 2017 Advertising Specs Policies & Terminology 2 General Policy All ads must open in a new window when clicked on. Investopedia.com reserves the right to refuse any creative.

More information

INDUSTRY SITES AD SPECIFICATIONS

INDUSTRY SITES AD SPECIFICATIONS INDUSTRY SITES AD SPECIFICATIONS TRUCKSALES / CONSTRUCTIONSALES / FARMMACHINERYSALES 1 HTML5 AD SPECIFICATIONS Hosting Options Rich Media HTML5 ads must be third party served via DoubleClick or Sizmek.

More information

DIGITAL AD SPECS. Rectangle Dimensions: 300x250. File Size: 60 kb Max. File Format: JPG, PNG, GIF, ad tags Animation: GIF, HTML5, 15 sec max; IBV

DIGITAL AD SPECS. Rectangle Dimensions: 300x250. File Size: 60 kb Max. File Format: JPG, PNG, GIF, ad tags Animation: GIF, HTML5, 15 sec max; IBV DESKTOP ADS Leaderboard Dimensions: 78x90 Animation: GIF, HTML5, 5 sec max; IBV 78x90 > 78x70 Half Page Dimensions: 300x600 File Size: 60 kb Animation: GIF, HTML5, 5 sec max; IBV Expandable size: 300x600

More information

The Economist Apps. Advertising Specs

The Economist Apps. Advertising Specs The Economist Apps Advertising Specs Apps Overview This is a living document that will evolve as we are presented with new formats, and we ll update it periodically to reflect these changes. All media

More information

If you are supplying a 970x250 Billboard or 970x90 Super Leaderboard you must supply the following sizes for Mobile and Tablet:

If you are supplying a 970x250 Billboard or 970x90 Super Leaderboard you must supply the following sizes for Mobile and Tablet: Creative Guidelines All creatives should be supplied 7 business days prior to launch for testing and approval Failure to provide copy to the required specifications outlined in Centaur Media PLC s specification

More information

Apple News Apple Advertising Platforms Specifications November 2017

Apple News Apple Advertising Platforms Specifications November 2017 Apple News Apple Advertising Platforms Specifications November 2017 About Advertising on Apple News Ads on Apple News can run across iphone, ipod touch, and ipad devices. Ad options include a variety of

More information

Fixed Size Ad Specifications

Fixed Size Ad Specifications Fixed Size Ad Specifications The following fixed size ad units are recommended as part of the new ad portfolio. These have been recommended based on Attitudes and Usage Study to determine which of the

More information

Haymarket Business Media AD SPECIFICATIONS AND STYLE GUIDE 2018

Haymarket Business Media AD SPECIFICATIONS AND STYLE GUIDE 2018 Fo r any information no t covered in this document please contact adcreative.hbm@haymarket.co m Contents Standard ad formats... 2 Bulletins... 3 Rich Media Ad Units... 3 HTML5 Creatives... 4 ZIP BUNDLES...

More information

Creative Specifications for Online Ads

Creative Specifications for Online Ads Creative Specifications for Online Ads NEWS updated 4/21/17 Total Audience Solutions. TABLE OF CONTENTS Contents STANDARD ADS...3 BILLBOARD ADS...4 FILMSTRIP ADS...5 PORTRAIT ADS...6 PUSHDOWN ADS...7 WALLPAPER

More information

General Policies. Investopedia.com reserves the right to refuse any creative. All creatives must be delivered 6 days prior to campaign launch.

General Policies. Investopedia.com reserves the right to refuse any creative. All creatives must be delivered 6 days prior to campaign launch. General Policies Investopedia.com reserves the right to refuse any creative. All creatives must be delivered 6 days prior to campaign launch. All in-banner audio and expansion must be user-initiated. When

More information

Sizmek Formats. The New MSN. Build Guide. October 2014

Sizmek Formats. The New MSN. Build Guide. October 2014 Formats The New MSN Build Guide October 2014 Table Of Contents Overview... 3 MSN Supported Platforms... 3 The New MSN Formats... 4 Sample Ads... 5 General Specifications... 5 Format Build Guides... 5 MSN

More information

Joomla! extension JSN EasySlider User Manual

Joomla! extension JSN EasySlider User Manual Joomla! extension JSN EasySlider User Manual (for JSN EasySlider 2.0.x) www.facebook.com/joomlashine www.twitter.com/joomlashine www.youtube.com/joomlashine This documentation is release under Creative

More information

Online banner advertising specifications 2013

Online banner advertising specifications 2013 1 General Guidelines 2 Newsletters 3 Rich Media 5 Video 6 Mobile Specs 7 Flash 8 Custom Content/ Microsites 8 Skin Specifications Online banner advertising specifications 2013 general guidelines Important

More information

Advertising Specifications for Alabama Media Group Properties

Advertising Specifications for Alabama Media Group Properties Advertising Specifications for Alabama Media Group Properties PRINT The Birmingham News The Huntsville Times Press-Register DIGITAL Standard Display High Impact Video Birmingham Magazine BROADSHEET AD

More information

DIGITAL DESIGN. advertising specs

DIGITAL DESIGN. advertising specs DIGITAL DESIGN advertising specs August 2018 BANNERS: WEB & MOBILE Dimension measurements provided in pixels BHMG BANNER ADS ON OUR LOCAL SITES File Formats: GIF, JPG, HTML5, Third-party ad tags (DoubleClick

More information

ADVERTISING SPECIFICATION

ADVERTISING SPECIFICATION ADVERTISING SPECIFICATION MOBILE & TABLET DESKTOP IN APP VIDEO TABLE of CONTENTS Creative Format page DISPLAY CREATIVE SPECIFICATION 3 DESKTOP RICH MEDIA 5 MOBILE RICH MEDIA & MRAID 6 DESKTOP VIDEO 8 MOBILE

More information

TECHNICAL SPECIFICATIONS DIGITAL Q1-2019

TECHNICAL SPECIFICATIONS DIGITAL Q1-2019 TECHNICAL SPECIFICATIONS DIGITAL Q1-2019 MASS TRANSIT MEDIA T A B L E O F C O N T E N T S 1. Display Advertising 2. Video Advertising 3. Emailing 4. Delivery Info p. 3 p. 7 p. 8 p. 9 2 Display Advertising

More information

Last updated on 1/20/2017

Last updated on 1/20/2017 AVAILABLE AD FORMATS: INTERSTITIALS BANNERS RECTANGLES SPONSORSHIP BILLBOARDS HOME PAGE TAKE OVERS VIDEOS SPECIAL OPERATIONS 1/20/2017 TECHNICAL SPECIFICATIONS: GENERAL GUIDELINES Please note this document

More information

AD SPECIFICATIONS. Standard Banners. Site Served. Creative. Animation DAA Ad Marker * Raw Assets Delivery. Availability. Metrics

AD SPECIFICATIONS. Standard Banners. Site Served. Creative. Animation DAA Ad Marker * Raw Assets Delivery. Availability. Metrics Standard Banners A standard banner ad is an ad unit that can be a static or animated image. The ad unit can link to a wide variety of actions, including a mobile site, app store, video, etc. Creative Design

More information

DIGITAL DESIGN. advertising specs SP35056

DIGITAL DESIGN. advertising specs SP35056 DIGITAL DESIGN advertising specs SP35056 OCTOBER 2018 BANNERS: WEB & MOBILE Dimension measurements provided in pixels BHMG BANNER ADS ON OUR LOCAL SITES GUIDELINES: File Formats: GIF, JPG, HTML5, Third-party

More information

WordPress How to Create a Simple Image Slider with the New RoyalSlider

WordPress How to Create a Simple Image Slider with the New RoyalSlider WordPress How to Create a Simple Image Slider with the New RoyalSlider Last update: 2/20/2013 WARNING: DO NOT USE INTERNET EXPLORER you can use Firefox, Chrome, or Safari but the editing screens do not

More information

JSN EasySlider Configuration Manual

JSN EasySlider Configuration Manual JSN EasySlider Configuration Manual Introduction Product Overview JSN EasySlider JSN EasySlider is the cutting-edge way to present content on website: Informative - Impressive - Interactive. It helps you

More information

The World In. Advertising specs

The World In. Advertising specs The World In Advertising specs Format Specifications This is a living document that will evolve as we are presented with new formats, and we ll update it periodically to reflect these changes. All media

More information

Advanced Dreamweaver CS6

Advanced Dreamweaver CS6 Advanced Dreamweaver CS6 Overview This advanced Dreamweaver CS6 training class teaches you to become more efficient with Dreamweaver by taking advantage of Dreamweaver's more advanced features. After this

More information

MetService Online Advertising Technical Specifications

MetService Online Advertising Technical Specifications MetService Online Advertising Technical Specifications Updated: 17 March 2015 FORMATS & DEADLINES Please note: If advertisements do not meet the specifications below, MetService may be unable to load the

More information

PBwiki Basics Website:

PBwiki Basics Website: Website: http://etc.usf.edu/te/ A wiki is a website that allows visitors to edit or add their own content to the pages on the site. The word wiki is Hawaiian for fast and this refers to how easy it is

More information

Chapter 1 Introduction to Dreamweaver CS3 1. About Dreamweaver CS3 Interface...4. Creating New Webpages...10

Chapter 1 Introduction to Dreamweaver CS3 1. About Dreamweaver CS3 Interface...4. Creating New Webpages...10 CONTENTS Chapter 1 Introduction to Dreamweaver CS3 1 About Dreamweaver CS3 Interface...4 Title Bar... 4 Menu Bar... 4 Insert Bar... 5 Document Toolbar... 5 Coding Toolbar... 6 Document Window... 7 Properties

More information

The Economist Apps. Advertising specs

The Economist Apps. Advertising specs The Economist Apps Advertising specs Contents APPS AND FORMATS 3-4 Overview Specifications STATIC ADVERTISING 5-6 Sponsor logo Interstitial HTML5 ADVERTISING 7-14 Interstitial Responsive Technical info

More information

How to lay out a web page with CSS

How to lay out a web page with CSS Activity 2.6 guide How to lay out a web page with CSS You can use table design features in Adobe Dreamweaver CS4 to create a simple page layout. However, a more powerful technique is to use Cascading Style

More information

Süddeutsche Zeitung, Digital Edition

Süddeutsche Zeitung, Digital Edition Süddeutsche Zeitung, Digital Edition Technical Specifications for Ads, as per October 06, 2015 Content 1. Introduction and Delivery Date p. 1 2. Image Ads 2.1. Static image ads p. 2 2.2. HTML-Ads p. 4

More information

Online banner advertising specifications

Online banner advertising specifications General Guidelines empr.com site Leaderboard 728290 IMU 3002250 Half-page unit 3002600 Slim IMU 3002100 Navigation bar ad 992230/text & logo Ad server DoubleClick DoubleClick DoubleClick DoubleClick DoubleClick

More information

Getting Started. Player App Installation. Updated on October 2, 2017

Getting Started. Player App Installation. Updated on October 2, 2017 1 Getting Started Updated on October 2, 2017 Player App Installation If the hardware you are using did not come pre-installed with the Revel Player app you will need to install this first. Windows hardware

More information

icreate Editor Tech spec

icreate Editor Tech spec icreate Editor Tech spec Creating a landing page? A website? Creating, designing, and building professional landing pages and websites has never been easier. Introducing icreate's drag & drop editor: Our

More information

PRODUCTION GUIDE. Adform MRAID 3D Cube (300x250)

PRODUCTION GUIDE. Adform MRAID 3D Cube (300x250) PRODUCTION GUIDE Adform MRAID 3D Cube (300x250) Production Guide 1 Table of Contents MRAID 3D Cube (300x250) 2 User Experience 2 Creative assets 2 Creating the walls 3 Customizing the cube 4 Manifest.json

More information

The following illustration shows the non-linear version of the ad, the ad floating above the white area where the publisher content would be.

The following illustration shows the non-linear version of the ad, the ad floating above the white area where the publisher content would be. The In-Stream LogoKit is an In-Stream linear and non-linear ad format that plays in VPAID-compliant video players. The ad displays icons in the bottom-right corner of the player which, when clicked, open

More information

If you are supplying a 970x250 Billboard or 970x90 Super Leaderboard you must supply the following sizes for Mobile and Tablet:

If you are supplying a 970x250 Billboard or 970x90 Super Leaderboard you must supply the following sizes for Mobile and Tablet: Creative Guidelines All creatives should be supplied 7 business days prior to launch for testing and approval Failure to provide copy to the required specifications outlined in Centaur Media PLC s specification

More information

1 GENERAL CREATIVE SPECS

1 GENERAL CREATIVE SPECS CREATIVE & TAG REQUIREMENTS 2016 1 GENERAL CREATIVE SPECS We are able to accept any creative size. The most common dimensions are listed below 1.1 CREATIVE DIMENSIONS - DESKTOP 728 x 90 300 x 250 160 x

More information

MetService Online Advertising Technical Specifications

MetService Online Advertising Technical Specifications MetService Online Advertising Technical Specifications Updated: 01 October 2013 FORMATS & DEADLINES Please note: If advertisements do not meet the specifications below, MetService may be unable to load

More information

DIGITAL DESIGN. advertising specs

DIGITAL DESIGN. advertising specs DIGITAL DESIGN advertising specs April 2018 BANNERS: WEB & MOBILE Dimension measurements provided in pixels BHMG BANNER ADS ON OUR LOCAL SITES File Formats: GIF, JPG, HTML5 File Size Limits: GIF, JPG:

More information

Banner: 300x50, 300x250 Interstitial: 320x480, 480x320 Platform Ad Type. Sizes. File Size. File Type. Max Frames Per Second

Banner: 300x50, 300x250 Interstitial: 320x480, 480x320 Platform Ad Type. Sizes. File Size. File Type. Max Frames Per Second ios 9 CREATIVE REQUIREMENTS: All of the following must be SSL compliant (URL must include https): Landing page URL 1x1 impression trackers 3rd party tags SMARTPHONE - BANNER ADS A standard banner ad is

More information

Kendo UI. Builder by Progress : Using Kendo UI Designer

Kendo UI. Builder by Progress : Using Kendo UI Designer Kendo UI Builder by Progress : Using Kendo UI Designer Copyright 2017 Telerik AD. All rights reserved. December 2017 Last updated with new content: Version 2.1 Updated: 2017/12/22 3 Copyright 4 Contents

More information

AD GUIDELINES & SPECS: WEBSITES

AD GUIDELINES & SPECS: WEBSITES AD GUIDELINES & SPECS: S }} SPACE & AVAILABILITY This document lists the advertising slots on our websites. Your salesperson will work with you to determine actual available dates for your placement(s).

More information

CIS 408 Internet Computing Sunnie Chung

CIS 408 Internet Computing Sunnie Chung Project #2: CIS 408 Internet Computing Sunnie Chung Building a Personal Webpage in HTML and Java Script to Learn How to Communicate Your Web Browser as Client with a Form Element with a Web Server in URL

More information

SPECIFICATIONS AND FAQ

SPECIFICATIONS AND FAQ SPECIFICATIONS AND FAQ 1 SPECIFICATIONS 600 768 2048 800 1200 1980 1280 1536 1024 1024 640 1136 640 940 768 1280 iphone 5 iphone 4 Kindle Full Page Ad Dimensions: Note: Two ipad creatives are required

More information

Basics of Web Technologies

Basics of Web Technologies Dear Student, Based upon your enquiry we are pleased to send you the course curriculum for Web Designing Given below is the brief description for the course you are looking for: Introduction to Web Technologies

More information

Using AJAX to Easily Integrate Rich Media Elements

Using AJAX to Easily Integrate Rich Media Elements 505 Using AJAX to Easily Integrate Rich Media Elements James Monroe Course Developer, WWW.eLearningGuild.com The Problem: How to string together several rich media elements (images, Flash movies, video,

More information

Website Management with the CMS

Website Management with the CMS Website Management with the CMS In Class Step-by-Step Guidebook Updated 12/22/2010 Quick Reference Links CMS Login http://staging.montgomerycollege.edu/cmslogin.aspx Sample Department Site URLs (staging

More information

Technical Requirements

Technical Requirements Technical Requirements Annonces pleinchamp com Delivery of elements 5 working days before the date of posting your campaign Contact : service-coordination@mb-diffusion.com General terms and conditions:

More information

Learning Adobe DreamWeaver CC. Module 1 Contents. Chapter 1: Introduction to DreamWeaver CC

Learning Adobe DreamWeaver CC. Module 1 Contents. Chapter 1: Introduction to DreamWeaver CC Module 1 Contents Chapter 1: Introduction to DreamWeaver CC Design Considerations...1-1 Types of Graphics...1-2 Backgrounds and Text...1-2 Planning the Navigation...1-2 The DreamWeaver Screen...1-3 Workspaces...

More information

Desktop Display: Advertising Units

Desktop Display: Advertising Units Page 1 Desktop Display: Advertising Units LEADERBOARD Medium Rectangle The Medium Rectangle (ROS) is one of our main display formats and appears throughout the site on both landing pages and story pages.

More information

DNNGo LayerSlider3D. User Manual

DNNGo LayerSlider3D. User Manual DNNGo LayerSlider3D User Manual Description This is a powerful 2D&3D transition module, you can set up the transition effect through various options for each element. It allows you to set up the amount

More information

Moodle Documentation for Students (v.3.4)

Moodle Documentation for Students (v.3.4) Moodle Documentation for Students (v.3.4) Moodle Documentation for Students (v.3.4) GSC STAFF Moodle Documentation for Students (v.3.4) by GSC Staff is licensed under a Creative Commons Attribution-ShareAlike

More information

GENERAL GUIDELINES 2018 DIGITAL SPECS IMPORTANT INFORMATION FUNCTIONALITY TIMELINES AND DELIVERY

GENERAL GUIDELINES 2018 DIGITAL SPECS IMPORTANT INFORMATION FUNCTIONALITY TIMELINES AND DELIVERY GENERAL GUIDELINES IMPORTANT INFORMATION HTML 5 banners are supported for all platforms All creatives are subject to final approval by Haymarket Media, Inc FUNCTIONALITY Sound: Sound must be off by default

More information

FORMS. The Exciting World of Creating RSVPs and Gathering Information with Forms in ClickDimensions. Presented by: John Reamer

FORMS. The Exciting World of Creating RSVPs and Gathering Information with Forms in ClickDimensions. Presented by: John Reamer FORMS The Exciting World of Creating RSVPs and Gathering Information with Forms in ClickDimensions Presented by: John Reamer Creating Forms Forms and Surveys: When and What to Use them For Both Allow you

More information

Third party edm - material specification

Third party edm - material specification In order to ensure a quick and smooth turnaround of EDMs, as well as to ensure correct and accurate delivery of the creative, it is necessary that the clients follow the guidelines below when submitting

More information

CREATIVE. ANIMATION 15 seconds max regardless of number of loops. Must be delivered as an animated GIF. SITE SERVED STANDARD BANNERS

CREATIVE. ANIMATION 15 seconds max regardless of number of loops. Must be delivered as an animated GIF. SITE SERVED STANDARD BANNERS STANDARD BANNERS A standard banner ad is an ad unit that can be a static or animated image. The ad unit can link to a wide variety of actions, including a mobile site, app store, video, etc. CREATIVE DESIGN

More information

Frequently Asked Questions

Frequently Asked Questions Application and Document Sharing, page 1 Hosting, Joining, and Setting up Meetings, page 2 Joining a WebEx Meeting or Playing Back a Meeting Recording on Chrome and Firefox, page 4 Cisco WebEx for Mobile

More information

PRODUCTION GUIDE. Adform Skin (836x x x x x754)

PRODUCTION GUIDE. Adform Skin (836x x x x x754) PRODUCTION GUIDE Adform Skin (836x754 + 942x754 + 1152x754 + 1264x754 + 1600x754) Production Guide 1 Table of Contents Skin (836x754 + 942x754 + 1152x754 + 1264x754 + 1600x754) 2 User Experience 2 Creative

More information

Sizmek Formats. Custom Header. Build Guide

Sizmek Formats. Custom Header. Build Guide Sizmek Formats Custom Header Build Guide Table Of Contents Overview... 3 Supported Platforms... 3 Specifications... 3 Known Issues... 3 Ad Behavior Screenshots... 4 Ad Interaction Tracking... 6 Template

More information

Advertising Standards and Creative Specifications

Advertising Standards and Creative Specifications The Loop Advertising Standards and Creative Specifications Advertising Standards and Creative Specifications The Loop reserves the right to refuse any advertising/advertisers, make exceptions to this policy

More information

EFM Community 3.1 Portal Administration Guide

EFM Community 3.1 Portal Administration Guide EFM Community 3.1 Portal Administration Guide WHITE PAPER For technical support please call: 1-800-787-8755 Or visit: Hwww.Vovici.comH Please contact Vovici technical support if you believe any of the

More information

ACA Dreamweaver Exam Notes

ACA Dreamweaver Exam Notes ACA Dreamweaver Exam Notes Remember when you need to copy and paste the text you have to open up that actual text file itself and the need to go to edit> select all>, edit> copy>, then go back to the html

More information

Online Advertising Specification

Online Advertising Specification Online Advertising Specification Contact Ad Operations Email: Adops@emap.com 0203 0332611 Ben Hadaway (Head of Ad Operations) 0203 0332610 Aejaz Shaikh (Deputy Manager) 0203 0332612 Calum Peak (Junior

More information

Super banner. Deliverables. HTML5 + Backup Image / Super Banner. Image

Super banner. Deliverables. HTML5 + Backup Image / Super Banner. Image Super banner Deliverables Ad formats Material set HTML5 + Backup Image / Image Materials File Type Dimensions Max File Size HTML5 HTML 975x100 200KB Image GIF, JPG or PNG 975x100 50KB Backup Image GIF,

More information

Banner Advertising Technical Specifications

Banner Advertising Technical Specifications Banner Advertising Technical Specifications Creative assets can be hosted by TechTarget s ad server or an approved third-party ad server. All creatives must adhere to the specifications outlined below.

More information

Required. Please provide. 1px required to differentiate from background. 30 seconds. Accepted and preferred AS2, AS3. 3 loop maximum.

Required. Please provide. 1px required to differentiate from background. 30 seconds. Accepted and preferred AS2, AS3. 3 loop maximum. General Guidelines Important Information n HTML 5 banners are supported and preferred for all platforms n All creatives are subject to final approval by Haymarket Media Inc. n All material must be submitted

More information

DIGITAL TECHNICAL SPECS

DIGITAL TECHNICAL SPECS DIGITAL TECHNICAL SPECS ForConstructionPros.com, along with AC Business Media, reserves the right to ask for revisions or reject any advertising it deems, in its sole opinion, not in keeping with its standards.

More information

Adobe Dreamweaver CS6 Digital Classroom

Adobe Dreamweaver CS6 Digital Classroom Adobe Dreamweaver CS6 Digital Classroom Osborn, J ISBN-13: 9781118124093 Table of Contents Starting Up About Dreamweaver Digital Classroom 1 Prerequisites 1 System requirements 1 Starting Adobe Dreamweaver

More information

Technical Specifications ONLINE 2019 Q1. De Standaard Het Nieuwsblad Gazet van Antwerpen Het Belang van Limburg

Technical Specifications ONLINE 2019 Q1. De Standaard Het Nieuwsblad Gazet van Antwerpen Het Belang van Limburg Technical Specifications ONLINE 2019 Q1 De Standaard Het Nieuwsblad Gazet van Antwerpen Het Belang van Limburg Index DISPLAY & VIDEO 3 Formats overview Display 3 Formats overview Video 4 TABLET 5 Formats

More information

Table of Contents. Access to CMS Your sites Workspace tour Pages and Sidebar Files and Images Build a web page...

Table of Contents. Access to CMS Your sites Workspace tour Pages and Sidebar Files and Images Build a web page... ACES CMS Manual Table of Contents Access to CMS... 3 Your sites... 3 Workspace tour... 4 Pages and Sidebar....4-5 Files and Images....6-7 Build a web page... 8 Paragraph types....9-5 Preview & Publish...

More information

ONLINE BANNER ADVERTISING SPECIFICATIONS 2015

ONLINE BANNER ADVERTISING SPECIFICATIONS 2015 1 General Guidelines 2 Flash 3 Rich Media 5 Skin Specifications 6 Video 7 Newsletters and Sponsored Promos 8 Custom Microsite 9 Mobile Specs ONLINE BANNER ADVERTISING SPECIFICATIONS 2015 GENERAL GUIDELINES

More information

Modules Documentation ADMAN. Phaistos Networks

Modules Documentation ADMAN. Phaistos Networks Modules Documentation ADMAN Phaistos Networks Table of Contents TABLE OF CONTENTS... 2 KEYWORDS... 5 FLASH BANNERS... 6 Options... 6 Public methods... 6 Public events... 6 Example... 7 EXPANDING BANNERS...

More information

Standard Design Reference

Standard Design Reference Standard Design Reference Version 4 Document ID SDR Revision 4 Effective Date March 2017 Standard ISO 9001-2015 / ISO 27001 Title STANDARD DESIGN REFERENCE Prepared By Alex McCreath / Director Reviewed

More information

Aware IM Version 8.2 Aware IM for Mobile Devices

Aware IM Version 8.2 Aware IM for Mobile Devices Aware IM Version 8.2 Copyright 2002-2018 Awaresoft Pty Ltd CONTENTS Introduction... 3 General Approach... 3 Login... 4 Using Visual Perspectives... 4 Startup Perspective... 4 Application Menu... 5 Using

More information

Web Designer s Manual

Web Designer s Manual Web Designer s Manual web Design Guide Designed by: Tim Green Table of Contents Saving Set Up and Starting Tips pg 3-4 pg 13-14 Classes Page

More information

XFINITY On Campus: Campus Technical Support Guide

XFINITY On Campus: Campus Technical Support Guide XFINITY On Campus Campus Technical Support Guide 1 AGENDA XFINITY On Campus Overview Navigation Upgrades & Features Support and Escalation Troubleshooting Steps Support Portal https://support.xfinityoncampus.com

More information

For General Advertising Information, call TABLE OF CONTENTS

For General Advertising Information, call TABLE OF CONTENTS digital ad specifications TABLE OF CONTENTS General Requirements... 2 Standard Display Sizes... 2 Unique Ad Formats...3-5 Billboard... 3 Interstitial... 3 Expanding Medium Rectangle... 3 Expanding Leaderboard...

More information

Welcome to Playlist, the world s easiest to use digital signage software

Welcome to Playlist, the world s easiest to use digital signage software http://www.viewtv.co.nz/playlist Playlist User Guide V2.1 Welcome to Playlist, the world s easiest to use digital signage software CONTENTS 1.0 LOGIN 1.1 ViewTV NZ Server 1.2 ViewTV Playlist PC Server

More information

DRESSSHOP RESPONSIVE PRESTASHOP THEME USER GUIDE

DRESSSHOP RESPONSIVE PRESTASHOP THEME USER GUIDE DRESSSHOP RESPONSIVE PRESTASHOP THEME USER GUIDE Version 1.0 Created by: arenathemes Page 1 Contents I. REQUIREMENTS & COMPATIBILITY... 3 II. INSTALLATION... 3 III. CONFIG AFTER INSTALLATION - THEME PACKAGE...

More information

DIGITAL TECHNICAL SPECS

DIGITAL TECHNICAL SPECS DIGITAL TECHNICAL SPECS OEMOffHighway.com, along with AC Business Media, reserves the right to ask for revisions or reject any advertising it deems, in its sole opinion, not in keeping its standards. CLICK

More information

SKYSCRAPER. 40kb for GIF/JPEG Formats: GIF, JPEG, HTML. Available on all pages; 1 per page. Available on all pages; 1 per page.

SKYSCRAPER. 40kb for GIF/JPEG Formats: GIF, JPEG, HTML. Available on all pages; 1 per page. Available on all pages; 1 per page. BANNER AD STANDARDS DISPLAY ADVERTISING LEADERBOARD Available on all pages; 2 per page. DISPLAY/RECTANGLE Available on all pages; 2 per page. LARGE BANNER Dimension: 638x60 Formats: JPEG, GIF (Static Only)

More information