<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Marker Studio - Full Service Digital Agency</title>
	<atom:link href="http://www.markerstudio.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.markerstudio.com</link>
	<description>Full Service Digital Agency</description>
	<lastBuildDate>Wed, 16 May 2012 23:08:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>jQuery Mobile Menu plugin for Responsive Web Sites</title>
		<link>http://www.markerstudio.com/technical/2012/05/jquery-mobile-menu-plugin-for-responsive-web-sites/</link>
		<comments>http://www.markerstudio.com/technical/2012/05/jquery-mobile-menu-plugin-for-responsive-web-sites/#comments</comments>
		<pubDate>Wed, 16 May 2012 22:09:58 +0000</pubDate>
		<dc:creator>Luke B</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[Responsive Design]]></category>

		<guid isPermaLink="false">http://www.markerstudio.com/?p=3626</guid>
		<description><![CDATA[As part of delivering a first class browsing experience for mobile, a site&#8217;s navigation often needs to be rethought for the smaller form factor. In many cases it makes sense to replace the bulky unordered list navigation with a simple dropdown menu at the top of the page. This minimises the screen real estate occupied [...]]]></description>
			<content:encoded><![CDATA[<p>As part of delivering a first class browsing experience for mobile, a site&#8217;s navigation often needs to be rethought for the smaller form factor. In many cases it makes sense to replace the bulky unordered list navigation with a simple dropdown menu at the top of the page. This minimises the screen real estate occupied by the menu and allows the user to see the page content earlier.</p>
<h2>The jQuery Mobile Menu Plugin</h2>
<p>Here at Marker we&#8217;ve developed a jQuery plugin to do just this:</p>
<p><a title="jquery-mobilemenu.js" href="http://www.markerstudio.com/wp-content/uploads/2012/05/jquery-mobilemenu.zip">jquery-mobilemenu.js</a></p>
<p>The Mobile Menu plugin scans an existing multi-level navigation menu and dynamically builds a dropdown list which navigates the user to the selected page on the select elements change event. It is true that there are a few other plugins out there that do this already, however most of them don&#8217;t seem to handle a menu that is more than 1 level deep.</p>
<p>These are the steps to get it working:</p>
<p>1) Make sure your navigation menu is in the format:</p>
<pre class="brush: plain; title: ; notranslate">
&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;/&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;/services/&quot;&gt;Services&lt;/a&gt;
&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;/services/web-development/&quot;&gt;Web Development&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;/services/online-marketing/&quot;&gt;Online Marketing&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;/contact-us/&quot;&gt;Contact Us&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</pre>
<p>2) Add the following scripts to your website:</p>
<pre class="brush: plain; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot; src=&quot;/js/jquery-1.6.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;/js/jquery-mobilemenu.js&quot;&gt;&lt;/script&gt;
</pre>
<p>3) Invoke the mobileMenu function on the empty dropdown list you wish to have populated:</p>
<pre class="brush: plain; title: ; notranslate">
&lt;script&gt;
jQuery(document).ready(function($) {
  $(&quot;ddlMobileNav&quot;).mobileMenu({ ulsource : &quot;#main-nav &gt; ul&quot;, maxlevel : 4 });
});
&lt;/script&gt;
</pre>
<p>The parameters you can specify for the mobileMenu function are:<br />
<strong></strong></p>
<p><strong>ulsource</strong><br />
The jquery selector referencing your unordered list.</p>
<p><strong>maxlevel</strong><br />
The maximum number of levels of the main navigation you wish to traverse.</p>
<h2>The Completed Select Dropdown Menu</h2>
<p>You should now have a dropdown menu that will navigate the user to the selected page. With a bit of CSS wizardry (not supplied), this might look as follows:</p>
<p><a href="http://www.markerstudio.com/technical/2012/05/jquery-mobile-menu-plugin-for-responsive-web-sites/attachment/select-menu/" rel="attachment wp-att-3656"><img class="alignnone size-full wp-image-3656" title="Dropdown menu example" src="http://www.markerstudio.com/wp-content/uploads/2012/05/select-menu.png" alt="mobile menu example" width="229" height="109" /></a></p>
<h2>Media Queries</h2>
<p>And finally, don&#8217;t forget to use media queries to hide the main navigation when the screen size is below a certain width, and likewise to hide the select menu when the screen width is larger than mobile.</p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markerstudio.com/technical/2012/05/jquery-mobile-menu-plugin-for-responsive-web-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Google Analytics Features</title>
		<link>http://www.markerstudio.com/marketing/2012/05/new-google-analytics-features/</link>
		<comments>http://www.markerstudio.com/marketing/2012/05/new-google-analytics-features/#comments</comments>
		<pubDate>Tue, 01 May 2012 22:32:47 +0000</pubDate>
		<dc:creator>Evan Mather</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Analytics]]></category>
		<category><![CDATA[Social Networks]]></category>

		<guid isPermaLink="false">http://www.markerstudio.com/?p=3604</guid>
		<description><![CDATA[Tracking Social Media For a long time, social media media interaction has been difficult to track. Google Analytics now allows you to track &#38; analyse: Social Network Sources &#8211; this is now made easier, without having to maintain an advanced segment. You can also see the particular URLs that are being shared. Conversions that can [...]]]></description>
			<content:encoded><![CDATA[<h3>Tracking Social Media</h3>
<p>For a long time, social media media interaction has been difficult to track. Google Analytics now allows you to track &amp; analyse:</p>
<ul>
<li>Social Network Sources &#8211; this is now made easier, without having to maintain an advanced segment. You can also see the particular URLs that are being shared.</li>
<li>Conversions that can be attributed to content shared on social media.</li>
<li>Pages that are being shared and how they are shared.</li>
<li>If you are using Social Plug-ins on your site, now you can see which of these are being used.</li>
</ul>
<p>All of these add much greater insight so you can optimise and focus your social media efforts to those that bring a better response. <a href="http://support.google.com/analytics/bin/answer.py?hl=en&amp;answer=1683971" target="_blank">Find out more on how to access this data</a>.</p>
<h3>Exporting Reports</h3>
<p>Sometimes I find myself reverting to the old version of Google Analytics because it did not support exporting into PDF. This option is now available.</p>
<p>They have also brought over the email function where you can schedule reports to send to yourself or others on a daily, weekly, monthly or quarterly basis &#8211; in any of the 4 formats.</p>
<h3>Event Flow Report</h3>
<div><a href="http://www.markerstudio.com/marketing/2012/05/new-google-analytics-features/attachment/screen-shot-2012-05-02-at-8-49-24-am/" rel="attachment wp-att-3606"><img class="size-full wp-image-3606 alignright" src="http://www.markerstudio.com/wp-content/uploads/2012/05/Screen-shot-2012-05-02-at-8.49.24-AM.png" alt="" width="277" height="188" /></a></div>
<p>You are probably already familiar with the fantastic Goal Flow and Visitor Flow visualisations. Now there is an Event Flow report. If you are using Events on your site, this is very useful in seeing how they are triggered in relation to each other:</p>
<div>
<ul>
<li>Is there a particular event or type of event that is a precursor to other events being triggered?</li>
<li>Does a certain event trigger many times in a session?</li>
<li>Do certain types of visitors trigger certain events more than average? (use in conjunction with segments).</li>
</ul>
<p>Use this data &amp; insight to create more of the content (Events) that are being interacted with. Also consider the placement of these events on your site if they are proving popular.</p>
</div>
<h3>Digital Marketing Attribution</h3>
<p>Google Analytics Premium has released a special <a href="http://www.google.com/analytics/features/attribution.html" target="_blank">Attribution Modeling tool</a>. It helps to visualise how your different online campaigns contribute to your website goals. Because it uses data already available, you can actually get similar data in the already present <a href="http://www.google.com/analytics/features/multichannel-funnels.html" target="_blank">Multi-Channel Funnels</a> available to all of us with the free Analytics package.</p>
<div><a href="http://www.markerstudio.com/marketing/2012/05/new-google-analytics-features/attachment/screen-shot-2012-05-02-at-9-36-37-am/" rel="attachment wp-att-3609"><img class="alignright size-full wp-image-3609" src="http://www.markerstudio.com/wp-content/uploads/2012/05/Screen-shot-2012-05-02-at-9.36.37-AM.png" alt="" width="259" height="177" /></a></div>
<p>If you have not already, I highly recommend you take a good look at Multi-Channel Funnels in the Conversion section of your Analytics Report. If you are using Goals it will reveal very insightful charts and funnels showing you how many and in what order visitors touch your different campaigns before making a conversion.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markerstudio.com/marketing/2012/05/new-google-analytics-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Career Opportunities for ASP.NET Web Developers with Kentico Experience</title>
		<link>http://www.markerstudio.com/technical/2012/03/career-opportunities-for-asp-net-web-developers-with-kentico-experience/</link>
		<comments>http://www.markerstudio.com/technical/2012/03/career-opportunities-for-asp-net-web-developers-with-kentico-experience/#comments</comments>
		<pubDate>Wed, 07 Mar 2012 00:33:42 +0000</pubDate>
		<dc:creator>Jon Beattie</dc:creator>
				<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://www.markerstudio.com/?p=3599</guid>
		<description><![CDATA[We are currently looking for talented .NET web developers, ideally with experience working on Kentico CMS projects, to join the team at our Auckland office. If you are interested or can recommend someone for the following role, please let us know. We will happily pay NZD$1,000 cash (in small non-sequential bills) for any successful referrals [...]]]></description>
			<content:encoded><![CDATA[<p>We are currently looking for talented .NET web developers, ideally with experience working on Kentico CMS projects, to join the team at our Auckland office. If you are interested or can recommend someone for the following role, please <a href="mailto:careers@markerstudio.com">let us know</a>. We will happily pay NZD$1,000 cash (in small non-sequential bills) for any successful referrals to both the referrer and the successfully appointed referee.</p>
<h3>Senior/Intermediate .NET Web Developers</h3>
<p>We currently have positions for senior and intermediate .NET web developers to implement web applications for internal and external projects. Marker Studio is a leading independently owned New Zealand based full service digital agency, founded in 2000, and part of the <a href="http://www.markerstudio.com/who-are-we/marker/">Marker family of companies</a>. You will be working on significant sized projects for many well known organisations in New Zealand, Australia and the UK, using the latest development tools.</p>
<p>We are ideally seeking someone with the following skills and experience:</p>
<ul>
<li>Passion for web application development</li>
<li>Experience with ASP.NET/C#/SQL Server</li>
<li>Experience with JQuery</li>
<li>Understanding and project experience with Kentico CMS (ideally you are a Kentico Certified Developer)</li>
<li>Love working on projects that deliver outstanding user experience</li>
<li>Familiarity with Agile development methodology and Microsoft TFS</li>
<li>An understanding of and hopefully some experience with responsive design and HTML5</li>
<li>Experience with SQL Server data warehouse and business intelligence projects would be a bonus</li>
<li>Problem solving skills</li>
<li>Great communication skills</li>
<li>Ability to work in a team environment</li>
<li>3 Years + commercial experience</li>
<li>Self motivated, organized with time management skills</li>
</ul>
<hr/>
<p>You will be working in a relaxed environment where your input and ideas are valued. </p>
<p>We are located just off Ponsonby Road in Auckland Central. Apply direct and come in for a chat. If you have any questions about the role, please do not hesitate to call Jon Beattie, Managing Director, on 021 434 133.</p>
<p><a href="mailto:careers@markerstudio.com">careers@markerstudio.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.markerstudio.com/technical/2012/03/career-opportunities-for-asp-net-web-developers-with-kentico-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Lower the Cost of Facebook Ads</title>
		<link>http://www.markerstudio.com/marketing/2012/02/how-to-lower-the-cost-of-facebook-ads/</link>
		<comments>http://www.markerstudio.com/marketing/2012/02/how-to-lower-the-cost-of-facebook-ads/#comments</comments>
		<pubDate>Thu, 23 Feb 2012 08:24:25 +0000</pubDate>
		<dc:creator>Evan Mather</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Advertising]]></category>
		<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://www.markerstudio.com/?p=3553</guid>
		<description><![CDATA[Advertising on Facebook is known to be more expensive and reaps a typically lower ROI than other online advertising platforms. Though Facebook offers better reach &#038; targeting for some brands &#038; organisations, it is still advertising that is worth considering. A report by the international agency TBG Digital (who are in the business of Facebook [...]]]></description>
			<content:encoded><![CDATA[<p>Advertising on Facebook is known to be more expensive and reaps a typically lower ROI than other online advertising platforms. Though Facebook offers better reach &#038; targeting for some brands &#038; organisations, it is still advertising that is worth considering.</p>
<p>A report by the international agency TBG Digital (who are in the business of Facebook marketing) has revealed that significant cost savings can be made by directing ad clicks to your Facebook page. Advertisers on Facebook can <strong>save 29% of their CPC</strong> if the ad directs users to their Facebook page instead of offsite. More impressively, advertisers can <strong>save 45% of their CPC</strong> if the ad specifically allows users to &#8220;Like&#8221; the page, again, rather than sending users to your webpage (off-Facebook). &#8211; Note that succeeding in obtaining &#8220;Likes&#8221; will also give you greater influence in Sponsored Stories ads.</p>
<p>It makes complete sense for Facebook to offer this incentive. It encourages advertisers to keep users on the site, exposing them to more ads, and subsequently, persuading brands to improve their Facebook pages &#038; functionality.</p>
<p>While almost all brands and organisations have a Facebook presence, the implication of these findings is that you need to have an excellent Facebook page. One reason why advertisers would rather send traffic off Facebook is because their page is not up to the customer expectation. Users are less inspired to have an experience with a brand that only has the plain Facebook pages &#038; functions. A little investment and plenty of thought is required into a proper Facebook strategy. Only then you would be happy to send traffic to your new innovative Facebook pages and enjoy the lower CPCs.</p>
<p>Read the <a href="http://clearslide.com/view/mail?iID=V8YFCRBY2JCCKGKSFMAK" rel="nofollow" target="_blank">presentation here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markerstudio.com/marketing/2012/02/how-to-lower-the-cost-of-facebook-ads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Google&#8217;s Social Search Means For You</title>
		<link>http://www.markerstudio.com/marketing/2012/01/what-google-social-search-means/</link>
		<comments>http://www.markerstudio.com/marketing/2012/01/what-google-social-search-means/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 02:54:45 +0000</pubDate>
		<dc:creator>Evan Mather</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Advertising]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Online Reputation]]></category>

		<guid isPermaLink="false">http://www.markerstudio.com/?p=3547</guid>
		<description><![CDATA[This week Google starts rolling out “Search, plus Your World”. It is the search engine&#8217;s latest &#38; biggest push to making search more personal and social through further integrating its Google+ social network into users search results. Google search has 3 new key features: 1. It gives searchers the ability to get personal search results &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>This week Google starts rolling out “Search, plus Your World”. It is the search engine&#8217;s latest &amp; biggest push to making search more personal and social through further integrating its Google+ social network into users search results. Google search has 3 new key features:</p>
<p>1. It gives searchers the ability to get personal search results &#8211; pulling posts &amp; photos from your Google+ circles.</p>
<p>2. Google+ profiles are made more prominent in search. When selecting a Google+ profile in the autocomplete, you will be returned results about THAT Ben Smith that you already know instead of those you don’t:</p>
<p><img class="aligncenter" src="http://4.bp.blogspot.com/-AQUyeKpPjgo/Twuecz6pc6I/AAAAAAAAAK0/pHCVzCjG-7E/s400/07+ben+smith+-+suggest.png" alt="" width="400" height="302" /></p>
<p>3. Searching for a topic will also return results of people who frequently discuss the topic on Google+.</p>
<p>Thinking about these developments for a moment (and using your imagination of what else there is to come), if appearing in search results is important for you, you would want to get a Google+ page and invest in it as best you can as you would your Facebook page.</p>
<p>Google is recognising the people behind the content and the influence of those using it. It has taken steps recently towards this integration such as utilising <a href="http://googlewebmastercentral.blogspot.com/2011/06/authorship-markup-and-web-search.html" rel="nofollow" target="_blank">authorship tags</a> and pulling +1 button recommendations into search results and ads. It is taking search to the point where, in this latest move, the influence and network of the people that follow your Google+ page could be more important than all the pagerank &amp; SEO you have achieved to-date.</p>
<p>Last year you didn’t need a Google+ page. The network&#8217;s market share plateaued, its usage slowed after its loud launch and we were all doubtful it would actually fly given Google&#8217;s track record in venturing to the social space in the past. However, the introduction of heavily personalised search results based on Google+ data outweighs any resistance to be involved.</p>
<p>Your standing on Google+ will soon determine how you perform on search. This is why it is important to have a Google+ page. <strong>Because search is becoming social</strong>. And by social, Google is only really interested in Google+.</p>
<p>Videos &amp; screenshots of the new features are on <a href="http://googleblog.blogspot.com/2012/01/search-plus-your-world.html" rel="nofollow" target="_blank">Google&#8217;s blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markerstudio.com/marketing/2012/01/what-google-social-search-means/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mobile Marketing and Analytics</title>
		<link>http://www.markerstudio.com/marketing/2011/11/mobile-marketing-and-analytics/</link>
		<comments>http://www.markerstudio.com/marketing/2011/11/mobile-marketing-and-analytics/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 21:52:49 +0000</pubDate>
		<dc:creator>Evan Mather</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[Mobile Advertising]]></category>

		<guid isPermaLink="false">http://www.markerstudio.com/?p=3429</guid>
		<description><![CDATA[I highly recommend anyone interested in the mobile space to watch this Mobile Marketing &#38; Analytics video by Avinash Kaushik from Google. This video is overflowing with practical tips on how businesses can properly take advantage of mobile. It is 1 hr 16 mins simply because of all the information he needs to get across including: [...]]]></description>
			<content:encoded><![CDATA[<p>I highly recommend anyone interested in the mobile space to watch this <a href="http://www.youtube.com/watch?v=KrTiyAMTQ_g" target="_blank">Mobile Marketing &amp; Analytics video</a> by Avinash Kaushik from Google.</p>
<p>This video is overflowing with practical tips on how businesses can properly take advantage of mobile. It is 1 hr 16 mins simply because of all the information he needs to get across including:</p>
<ul>
<li>AdWords for mobile</li>
<li>Using QR codes</li>
<li>Mobile optimised sites</li>
<li>Optimising experiences for mobile &amp; tablets</li>
<li>Measuring the performance of it all</li>
</ul>
<p>Mobile marketing success relies on relevance and understanding the needs and behaviours of your markets that are using mobile.</p>
<p>Take the lead in bleeding-edge marketing. If you are looking for mobile strategy &amp; ideas and reporting techniques you must see this.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markerstudio.com/marketing/2011/11/mobile-marketing-and-analytics/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Marker Double Finalist at Microsoft Partner Awards 2011</title>
		<link>http://www.markerstudio.com/technical/2011/10/marker-double-finalist-at-microsoft-partner-awards-2011/</link>
		<comments>http://www.markerstudio.com/technical/2011/10/marker-double-finalist-at-microsoft-partner-awards-2011/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 06:59:49 +0000</pubDate>
		<dc:creator>Jon Beattie</dc:creator>
				<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://www.markerstudio.com/?p=3416</guid>
		<description><![CDATA[We are pleased to announce that Marker is a double finalist at the Microsoft New Zealand Partner Awards 2011 for the Windows Phone Solution of the year. Awards will be announced on 17th November 2011.]]></description>
			<content:encoded><![CDATA[<p>We are pleased to announce that Marker is a double finalist at the <a href="http://www.microsoft.com/nz/partnerawards/">Microsoft New Zealand Partner Awards 2011</a> for the Windows Phone Solution of the year. </p>
<p>Awards will be announced on 17th November 2011. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.markerstudio.com/technical/2011/10/marker-double-finalist-at-microsoft-partner-awards-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rugby World Cup: Mobile versus Web Infographic</title>
		<link>http://www.markerstudio.com/anywhere/2011/10/world-cup-mobile-apps-get-greater-usage-than-website/</link>
		<comments>http://www.markerstudio.com/anywhere/2011/10/world-cup-mobile-apps-get-greater-usage-than-website/#comments</comments>
		<pubDate>Thu, 20 Oct 2011 19:41:54 +0000</pubDate>
		<dc:creator>Jon Beattie</dc:creator>
				<category><![CDATA[Anywhere]]></category>

		<guid isPermaLink="false">http://www.markerstudio.com/?p=3401</guid>
		<description><![CDATA[The Rugby World Cup 2011 has released details of their digital campaign. The key statistic for me is that usage of mobile devices outstrips that of the website. Let me repeat that, more people accessed the mobile apps than the website. Download PDF version Official mobile application downloaded more than 3 million times More than [...]]]></description>
			<content:encoded><![CDATA[<p>The Rugby World Cup 2011 has <a href="http://www.rugbyworldcup.com/home/news/newsid=2059653.html#rugby+world+cup+2011+mobile+digital">released details</a> of their digital campaign. </p>
<p>The key statistic for me is that usage of mobile devices outstrips that of the website. Let me repeat that, more people accessed the mobile apps than the website. </p>
<p><a href="http://www.markerstudio.com/wp-content/uploads/2011/10/Rugby-World-Cup-Mobile-Trumps-Web-Infographic.pdf" target="_blank"><img src="http://www.markerstudio.com/wp-content/uploads/2011/10/Rugby-World-Cup-Mobile-Trumps-Web-Infographic.png" alt="Rugby World Cup Mobile Trumps Web Infographic" title="Rugby World Cup Mobile Trumps Web Infographic" width="570" height="912" class="alignnone size-full wp-image-3405" /></a></p>
<p><a href="http://www.markerstudio.com/wp-content/uploads/2011/10/Rugby-World-Cup-Mobile-Trumps-Web-Infographic.pdf" target="_blank">Download PDF version</a></p>
<ul>
<li>Official mobile application downloaded more than <strong>3 million times</strong></li>
<li>More than <strong>17 million video clips</strong> viewed on the official RWC 2011 mobile app</li>
<li>The mobile apps generated over <strong>350 million page views</strong> compared with <strong>120 million</strong> on the website.
<li>
</ul>
<p>This is stunning. Mobile usage was nearly three times that of the website. This is a resounding success for mobile and I applaud these guys for making such a bold move. Nothing like the scale of what they delivered had ever been done before for a major sporting event, and they have proven that <strong>if</strong> you build it, they <strong>will</strong> come!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markerstudio.com/anywhere/2011/10/world-cup-mobile-apps-get-greater-usage-than-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flow Visualization for Google Analytics</title>
		<link>http://www.markerstudio.com/marketing/2011/10/flow-visualization-for-google-analytics/</link>
		<comments>http://www.markerstudio.com/marketing/2011/10/flow-visualization-for-google-analytics/#comments</comments>
		<pubDate>Thu, 20 Oct 2011 19:26:00 +0000</pubDate>
		<dc:creator>Jon Beattie</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Analytics]]></category>

		<guid isPermaLink="false">http://www.markerstudio.com/?p=3396</guid>
		<description><![CDATA[Google has announced a new set of reports for Google Analytics called Flow Visualizations. The have tried to come up with an innovative way of visualising path analysis, which is looking at how visitors move around your site. This has typically been a report that is difficult to try to get any value from or [...]]]></description>
			<content:encoded><![CDATA[<p>Google has announced a new set of reports for Google Analytics called <a href="http://analytics.blogspot.com/2011/10/introducing-flow-visualization.html">Flow Visualizations</a>. The have tried to come up with an innovative way of visualising <strong>path analysis</strong>, which is looking at how visitors move around your site. This has typically been a report that is difficult to try to get any value from or draw concrete conclusions. </p>
<p><a href="http://analytics.blogspot.com/2011/10/introducing-flow-visualization.html"><img src="http://www.markerstudio.com/wp-content/uploads/2011/10/VisitFlowpart1.png" alt="Visitors Flow - Google Analytics Flow Visualization" title="Visitors Flow - Google Analytics Flow Visualization" width="400" height="250" class="alignnone size-full wp-image-3397" /></a></p>
<p>Initially it looks like we will get Visitors Flow and Goal Flow reports, but they plan to roll out additional reports later. Segmentation is supported so you can view reports by the standard or your custom segments (e.g. show me how mobile visitors flow through the site). </p>
<p>This is an exciting new feature which you can expect to be rolled out in the next couple of months. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.markerstudio.com/marketing/2011/10/flow-visualization-for-google-analytics/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How long New Zealanders spend on Facebook &#8211; Experian®</title>
		<link>http://www.markerstudio.com/marketing/2011/10/new-zealand-on-facebook/</link>
		<comments>http://www.markerstudio.com/marketing/2011/10/new-zealand-on-facebook/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 20:00:33 +0000</pubDate>
		<dc:creator>Evan Mather</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[digital strategy]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[Social Networks]]></category>

		<guid isPermaLink="false">http://www.markerstudio.com/?p=3355</guid>
		<description><![CDATA[It is rare to find New Zealand internet usage statistics. But recently, a study by Experian Hitwise has revealed that New Zealanders spend the second longest amount of time on Facebook &#8211; 30 mins 31 secs per session, following Singaporeans. This does mean we in New Zealand spend more time on Facebook than the typical [...]]]></description>
			<content:encoded><![CDATA[<p>It is rare to find New Zealand internet usage statistics. But recently, a study by Experian Hitwise has revealed that New Zealanders spend the second longest amount of time on Facebook &#8211; 30 mins 31 secs per session, following Singaporeans. This does mean we in New Zealand spend more time on Facebook than the typical Australian or American, whom we typically look to for usage stats &amp; trends.</p>
<table width="80%" border="0" cellspacing="2" cellpadding="1">
<tbody>
<tr>
<td width="30%"><strong>Market </strong></td>
<td width="50%"><strong>Average time spent on Facebook in August 2011 per session</strong></td>
</tr>
<tr>
<td><strong>Singapore</strong></td>
<td>38 mins 46 sec</td>
</tr>
<tr>
<td><strong>New Zealand </strong></td>
<td>30 mins 31 sec</td>
</tr>
<tr>
<td><strong>Australia</strong></td>
<td>26 mins 27 sec</td>
</tr>
<tr>
<td><strong>UK</strong></td>
<td>25 mins 33 sec</td>
</tr>
<tr>
<td><strong>US</strong></td>
<td>20 mins 46 sec</td>
</tr>
<tr>
<td><strong>France</strong></td>
<td>21 mins 53 sec</td>
</tr>
<tr>
<td><strong>India </strong></td>
<td>20 mins 21 sec</td>
</tr>
<tr>
<td><strong>Brazil</strong></td>
<td>18 mins 19 sec</td>
</tr>
</tbody>
</table>
<p><br/><br />
This is a key metric and only makes it more pertinent for brands, particularly those operating in the markets listed above to understand and implement social networking in their digital strategy. Social networks provide the captive audience for advertisers to promote to and brands to engage with. It is also a goal for networks such as Facebook to keep members using the site for as long as possible in each session. And because your country, your market, is using it so much, your brand really needs to take advantage of this.</p>
<p>View the <a href="http://www.experianplc.com/news/company-news/2011/27-09-2011.aspx" rel="nofollow" target="_blank">Experian article</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markerstudio.com/marketing/2011/10/new-zealand-on-facebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

