<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/css" href="https://www.davidhboggs.com/blog/templates/default/rss.css" ?>
<rss version="2.0"
 xmlns:content="http://purl.org/rss/1.0/modules/content/"
 xmlns:media="http://search.yahoo.com/mrss/"
 xmlns:atom="http://www.w3.org/2005/Atom"
 xmlns:georss="http://www.georss.org/georss"> 
<channel>
<title>David H Boggs, MS Search Marketing </title>


<link>https://www.davidhboggs.com/blog</link>

<description>
David H Boggs, MS provides expert search marketing, SEO and Google Ads services to Maine businesses.
</description>

<language>en-us</language>
<atom:link href="https://www.davidhboggs.com/blog/rssfeed.php?catid=6" rel="self" type="application/rss+xml" />

<item>
<title>How to use structured data markup to enhance appearance in Google search results</title>


<description></description>

<link>https://www.davidhboggs.com/blog/conversion-rate-optimization/how-to-use-structured-data-markup-to-enhance-appearance-in-google-search-results-2372-thread.html</link>
<pubDate>Sat, 20 Dec 2025 00:00:00 GMT</pubDate>
<guid>https://www.davidhboggs.com/blog/conversion-rate-optimization/how-to-use-structured-data-markup-to-enhance-appearance-in-google-search-results-2372-thread.html</guid>
<content:encoded><![CDATA[<p><span style="font-size:16px">Correctly using structured data markup in your articles and blog posts can make your content stand out in Google Search results by including it in enhanced displays like top-stories carousels and rich results with headline text and large images, like this:</span></p>  <p><span style="font-size:16px"><img src="https://www.davidhboggs.com/blog/ckuploader.php?action=viewimage&amp;image=aW1hZ2U0NDM2OC5wbmc=" /></span></p>  <p><span style="font-size:16px">Google encourages us to use structured data to help it understand what our pages are about, by providing clues in a structured format that it can easily interpret.</span></p>  <p><span style="font-size:16px">Structured data is coded using in-page JavaScript markup that describes the content of the page.</span></p>  <p><span style="font-size:16px">Google provides the following suggestions/warnings for using structured data markup for SEO purposes:</span></p>  <ul> 	<li><span style="font-size:16px">Although most structured data for search uses <strong><a target="_blank" rel="nofollow" href="https://schema.org/">schema.org</a></strong> vocabulary, follow the documentation on <a target="_blank" rel="nofollow" href="https://developers.google.com/"><u><strong>developers.google.com</strong></u></a> as definitive for Google Search behavior, rather than the schema.org documentation. </span> 	<li><span style="font-size:16px">Always test your structured data markup using the <strong><a target="_blank" rel="nofollow" href="https://search.google.com/structured-data/testing-tool">Structured Data Testing tool</a></strong><a target="_blank" rel="nofollow" href="https://search.google.com/structured-data/testing-tool"><strong> </strong></a>before it goes live.</span> 	<li><span style="font-size:16px">For your content to be eligible for enhanced display on Google, you must include all the required properties for an object. </span> 	<li><span style="font-size:16px">Defining more recommended features can make it more likely that your information can appear in Search results with enhanced display, but it&#39;s better to supply fewer but complete and accurate properties vs. more properties that are less complete or accurate. </span> </ul>  <p><span style="font-size:16px">Although a number of different structured-data markup systems exist, and Google recognizes several of them, the simplest and most-used is JSON-LD (JavaScript Object Notation for Linked Data) - say "Jason LD" - which uses <strong>arrays of attribute-value pairs</strong> (like "@type NewsArticle").</span></p>  <p><span style="font-size:16px">Google recognizes a number of applications for structured data - AMP and non-AMP pages, articles, videos, recipes, etc. For simplicity, in the following example I&#39;m going to demonstrate the easiest case: how to do structured-data markup for a <strong>non-AMP article or blog post</strong>.</span></p>  <p><span style="font-size:16px">To begin, I created a simple webpage containing an article, here:<a target="_blank" rel="nofollow" href="http://www.davidhboggs.com/article.htm"><u><strong> </strong></u></a><u><strong><a target="_blank" rel="nofollow" href="https://www.davidhboggs.com/demos/article.htm">https://www.davidhboggs.com/demos/article.htm</a></strong></u> which looks like this:</span></p>  <p><span style="font-size:16px"><img src="https://www.davidhboggs.com/blog/ckuploader.php?action=viewimage&amp;image=aW1hZ2U2YmQ3Yi5wbmc=" /></span></p>  <p><span style="font-size:16px">Then using the example here <u><strong><a target="_blank" rel="nofollow" href="https://search.google.com/structured-data/testing-tool">https://search.google.com/structured-data/testing-tool</a> </strong></u> I created the following JSON-LD script and pasted it into the &#60;HEAD&#62; of <strong>article.htm</strong>:</span></p>  <p><span style="font-size:16px">---------------------------------------------------------------------------------</span></p>  <p><span style="font-size:16px">&#60;script type="application/ld+json"&#62;<br /> &#123;<br /> "@context": "http://schema.org",<br /> "@type": "NewsArticle",<br /> "mainEntityOfPage": &#123;<br /> "@type": "WebPage",<br /> "@id": "https://www.davidhboggs.com/article.htm"<br /> },<br /> "headline": "Transformation of Search Summit scheduled for 19 October 2018 in NYC",<br /> "image": [<br /> "https://www.davidhboggs.com/images/david_round_150.jpg",<br /> "https://www.davidhboggs.com/images/newsletter.png",<br /> "https://www.davidhboggs.com/images/transformation-of-search.png"<br /> ],<br /> "datePublished": "2018-08-08T12:51:51+00:00",<br /> "dateModified": "2018-08-08T12:51:51+00:00",<br /> "author": &#123;<br /> "@type": "Person",<br /> "name": "David Boggs"<br /> },<br /> "publisher": &#123;<br /> "@type": "Organization",<br /> "name": "ACRO Global",<br /> "logo": &#123;<br /> "@type": "ImageObject",<br /> "url": "https://www.acroglobal.com/images/header2017_300.png"<br /> }<br /> },<br /> "description": "Conference organized by ClickZ with Search Engine Watch and Catalyst will be addressing latest trends in search: platforms and technologies, organic and paid."<br /> }<br /> &#60;/script&#62;</span></p>  <p><span style="font-size:16px">---------------------------------------------------------------------------</span></p>  <p><span style="font-size:16px">Here&#39;s where all that came from, line by line:</span></p>  <p><span style="font-size:16px">"http://schema.org" is used in every script.</span></p>  <p><span style="font-size:16px">The various <strong>@types</strong> for non-AMP pages are here: <u><strong><a target="_blank" rel="nofollow" href="https://developers.google.com/search/docs/data-types/article#non-amp">developers.google.com/sear...data-types/article#non-amp</a></strong></u></span></p>  <p><span style="font-size:16px">"NewsArticle" and "WebPage" were obvious fits for my content.</span></p>  <p><span style="font-size:16px">"@id" is the URL of the page: <em>https://www.davidhboggs.com/article.htm </em></span></p>  <p><span style="font-size:16px">"headline" comes from the &#60;h1&#62; tag of the page.</span></p>  <p><span style="font-size:16px">Then come the "image" URLs, one for each image on the page: head shot, Newsletter icon, conference icon. Include all your important images.</span></p>  <p><span style="font-size:16px">Next are "datePublished" and &#39;dateModified" in <strong>iso 8601</strong> format, which you can get here: <a target="_blank" rel="nofollow" href="http://www.timestampgenerator.com/"><u><strong> </strong></u></a><u><strong><a target="_blank" rel="nofollow" href="http://www.timestampgenerator.com/">http://www.timestampgenerator.com/</a></strong></u></span></p>  <p><span style="font-size:16px">Then come "author" data, with @type=person, name=David Boggs</span></p>  <p><span style="font-size:16px">Followed by "publisher" data: @type=Organization, name=ACRO Global</span></p>  <p><span style="font-size:16px">Then "logo" with the data pair @type: "Image Object" and the URL of the ACRO Global logo</span></p>  <p><span style="font-size:16px">Finally "description" from the &#60;META description&#62; tag of the page</span></p>  <p><span style="font-size:16px">Saved the page, uploaded it to DavidHBoggs.com and ran the Google Structured Data Testing Tool on the page URL from here: <u><strong><a target="_blank" rel="nofollow" href="https://search.google.com/structured-data/testing-tool">https://search.google.com/structured-data/testing-tool</a></strong></u></span></p>  <p><span style="font-size:16px">which produced this result:</span></p>  <p><span style="font-size:16px"><img src="https://www.davidhboggs.com/blog/ckuploader.php?action=viewimage&amp;image=aW1hZ2U5OGJkZS5wbmc=" /></span></p>  <p><span style="font-size:16px">No errors, no warnings. Great!</span></p>  <p><span style="font-size:16px">But had I messed up, Google would have given me a (more or less) helpful error message.</span></p>  <p><span style="font-size:16px">If this were a "serious" page - not an example - I&#39;d next add it to my XML sitemap, upload that ad run it by Google Search Console for re-indexing.</span></p>  <p><span style="font-size:18px">And go here for more on <u><strong><a target="_blank" rel="nofollow" href="https://www.davidhboggs.com/seo/">Maine search engine optimization</a>.</strong></u></span></p>]]></content:encoded>
</item>

<item>
<title>How to use Google Ads Keyword Planner to find the best keywords for SEO</title>


<description></description>

<link>https://www.davidhboggs.com/blog/conversion-rate-optimization/how-to-use-google-ads-keyword-planner-to-find-the-best-keywords-for-seo-2389-thread.html</link>
<pubDate>Sat, 20 Dec 2025 00:00:00 GMT</pubDate>
<guid>https://www.davidhboggs.com/blog/conversion-rate-optimization/how-to-use-google-ads-keyword-planner-to-find-the-best-keywords-for-seo-2389-thread.html</guid>
<content:encoded><![CDATA[<p><span style="font-size:16px">Google wants you to use its <strong>free Keyword Planner tool </strong>to create Google Ads campaigns, in order to collect click charges from you. And it works fine for that. But you can also use it to identify the keywords that Google&#39;s vast store of search data show to be the most valuable for use in attracting searches for what you&#39;re selling - via Google organic search as well as in a Google Ads campaign. </span></p>  <p><span style="font-size:16px">What&#39;s the catch? To get full use of the Keyword Planner, you must have a Google account, and have set up at least one Google Ads campaign. That&#39;s a fair trade.</span></p>  <p><span style="font-size:16px">To begin, log in to your Google account and go to Google Ads, where you should see a page header similar to this:</span></p>  <p><span style="font-size:16px"><img src="https://www.davidhboggs.com/blog/ckuploader.php?action=viewimage&amp;image=aW1hZ2UwMTY2NGIucG5n" /></span></p>  <p><span style="font-size:16px">Click on the <strong>Tools </strong>icon to get the list of tools:</span></p>  <p><span style="font-size:16px"><img src="https://www.davidhboggs.com/blog/ckuploader.php?action=viewimage&amp;image=aW1hZ2UyYWNjMi5wbmc=" /></span></p>  <p><span style="font-size:16px">Then click on <strong>Keyword Planner</strong>, which will send you here:</span></p>  <p><span style="font-size:16px"><img src="https://www.davidhboggs.com/blog/ckuploader.php?action=viewimage&amp;image=aW1hZ2UzYzA5Yi5wbmc=" /></span></p>  <p><span style="font-size:16px">Click on <strong>Find Keywords</strong>, and in the screen that opens, enter 5 "seed keywords" - the most basic terms that describe your product. In the example, I&#39;m assuming our product is a Cape Cod bed and breakfast, and the 5 seed keywords I&#39;ve picked are <strong>cape cod</strong>, <strong>bed and breakfast</strong>,<strong> lodging</strong>, <strong>vacation</strong> and<strong> beach</strong>. To proceed from there, click <strong>Get Started</strong>.</span></p>  <p><span style="font-size:16px"><img src="https://www.davidhboggs.com/blog/ckuploader.php?action=viewimage&amp;image=aW1hZ2U0MzUyYS5wbmc=" /></span></p>  <p><span style="font-size:16px">That should send you to a screen like the one below:</span></p>  <p><span style="font-size:16px"><img src="https://www.davidhboggs.com/blog/ckuploader.php?action=viewimage&amp;image=aW1hZ2U1ZDMxMy5wbmc=" /></span></p>  <p><span style="font-size:16px">If the keyword column is too narrow - cuts off parts of the keywords - just grab the column divider and pull it farther open:</span></p>  <p><span style="font-size:16px"><img src="https://www.davidhboggs.com/blog/ckuploader.php?action=viewimage&amp;image=aW1hZ2UyMjYwZjcucG5n" /></span></p>  <p><span style="font-size:16px">Take a moment to take in an overview of all the information that&#39;s provided in that screen, such as:</span></p>  <ul> 	<li><span style="font-size:16px">Starting from our 5 seed keywords, Keyword Planner has generated 2360 suggested keywords, based on actual Google searches.</span> 	<li><span style="font-size:16px">Total numbers of searches, and numbers of searches done on mobile devices, by month for the past 12 months.</span> 	<li><span style="font-size:16px">For each of these 2360 keywords: </span> 	<ul> 		<li><span style="font-size:16px">The average number of monthly searches</span> 		<li><span style="font-size:16px">Trend line of search numbers by month</span> 		<li><span style="font-size:16px">Level of competition</span> 		<li><span style="font-size:16px">High and low Google Ads bid needed for top position over the past 12 months</span> 	</ul> 	 </ul>  <p><span style="font-size:16px">Now some thinking on our part is required. Because some of these suggested keywords are much too broad - optimizing a page for "beach" or "lodging" will get us nowhere - and others (not shown in the screencap) like "bed and breakfast UK" are irrelevant. We need to pick and choose.</span></p>  <p><span style="font-size:16px">The 2360 keywords are presented in groups of 500. We need to go down the list of 1 to 500 and click the checkboxes beside the most relevant-looking ones, like this:</span></p>  <p><span style="font-size:16px"><img src="https://www.davidhboggs.com/blog/ckuploader.php?action=viewimage&amp;image=aW1hZ2U5OWYyNTkucG5n" /></span></p>  <p><span style="font-size:16px">At the left end of the header, Google will keep count of the keywords we&#39;ve selected.</span></p>  <p><span style="font-size:16px"><strong>Important: </strong>When you get to the end of the first group of 500 keywords, before going on to the next 500, click the <strong>Add to Plan</strong> link (as in screencap below) in the header. If you don&#39;t, the system will "forget" your picks from the first 500 and reset to 0 selected.</span></p>  <p><span style="font-size:16px"><img src="https://www.davidhboggs.com/blog/ckuploader.php?action=viewimage&amp;image=aW1hZ2U3NTM0NS5wbmc=" /></span></p>  <p><span style="font-size:16px">When you&#39;ve clicked <strong>Add to plan</strong>, you should see the <strong>In Plan</strong> indicator at lower right, like this: </span></p>  <p><span style="font-size:16px"><img src="https://www.davidhboggs.com/blog/ckuploader.php?action=viewimage&amp;image=aW1hZ2UxMzA4NGEucG5n" /></span></p>  <p><span style="font-size:16px">Click the right-arrow to move to the next group of 500 keywords.</span></p>  <p><span style="font-size:16px">Repeat for each group of 500 keywords. </span></p>  <p><span style="font-size:16px">When that process has been completed successfully, Google will create a <strong>Plan </strong>and save it as a draft. You may have to back-arrow to get to a screen that displays this:</span></p>  <p><span style="font-size:16px"><img src="https://www.davidhboggs.com/blog/ckuploader.php?action=viewimage&amp;image=aW1hZ2UxOWY5MDgucG5n" /></span></p>  <p><span style="font-size:16px">Click <strong>RESUME PLAN</strong> to open the Plan Overview screen:</span></p>  <p><span style="font-size:16px"><img src="https://www.davidhboggs.com/blog/ckuploader.php?action=viewimage&amp;image=aW1hZ2UxNGZiMDcucG5n" /></span></p>  <p><span style="font-size:16px">As you can see, Google has figured out that using Google Ads we can get 4600 incremental site visits for "only" $6400. And it tells us that most clicks will come from mobile devices, and 97% from within Massachusetts - all equally useful information for purposes of SEO for organic search.</span></p>  <p><span style="font-size:16px">Click the <strong>DOWNLOAD PLAN </strong>link at top right, and Google will create a spreadsheet in CSV format that we can download and open in Excel. As created by Google, the interesting parts of this CSV file will look like this:</span></p>  <p><span style="font-size:16px"><img src="https://www.davidhboggs.com/blog/ckuploader.php?action=viewimage&amp;image=aW1hZ2UxNTc3YmIucG5n" /></span></p>  <p><span style="font-size:16px">The <strong>Keyword </strong>column contains my picks from the 2360 that Google generated. Beside each are Google&#39;s estimates of monthly clicks, impressions, click charges, clickthrough rate and cost per click for each keyword when used in a Google Ads campaign with the aforementioned $6400 click budget.</span></p>  <p><span style="font-size:16px">But for organic SEO purposes, what we most want to know is: what keywords do we most need to weave into our pages to interest the most prospects? Those with the highest estimated cost per click, of course, because those CPC data come from real-life Google Ads data and reflect the level of competition among suppliers. So, with a bit of Excel manipulation, we can get this rank-ordered list of keywords, starting with the most valuable:</span></p>  <p><span style="font-size:16px"><img src="https://www.davidhboggs.com/blog/ckuploader.php?action=viewimage&amp;image=aW1hZ2UyMDllYzYucG5n" /></span></p>  <p><span style="font-size:16px">Thanks for your free help, Google!</span></p>  <p><span style="font-size:18px">Go here for more in depth about <strong><u><a target="_blank" rel="nofollow" href="https://www.davidhboggs.com/keywords/">keyword research for Google Ads and SEO</a></u>.</strong></span></p>  <p><span style="font-size:18px">And go here for more on <u><strong><a target="_blank" rel="nofollow" href="https://www.davidhboggs.com/seo/">Maine search engine optimization</a>.</strong></u></span></p>]]></content:encoded>
</item>

<item>
<title>UXPA 2025 Call for Proposals closes Friday</title>


<description>UXPA Amsterdam 16-19 June 2025</description>

<link>https://www.davidhboggs.com/blog/conversion-rate-optimization/uxpa-call-for-proposals-closes-friday-3935-thread.html</link>
<pubDate>Mon, 07 Oct 2024 14:38:37 GMT</pubDate>
<guid>https://www.davidhboggs.com/blog/conversion-rate-optimization/uxpa-call-for-proposals-closes-friday-3935-thread.html</guid>
<content:encoded><![CDATA[<p><img src="https://www.davidhboggs.com/blog/ckuploader.php?action=viewimage&amp;image=dXhwYTI1OTgyYy5wbmc=" style="height:100%; width:100%" /></p>  <h1><span style="color:#990000"><strong>UXPA 2025 Call for Proposals closes Friday</strong></span></h1>  <p><span style="font-size:18px"><span style="color:#000000">The </span><strong><span style="color:#000000">User Experience Professionals Association (UXPA) </span></strong><span style="color:#000000">has extended its deadline for 2025 international conference speaker proposals to 11:59 PM Pacific Time Friday this week 11 October 2024.</span></span></p>  <p><span style="font-size:18px"><span style="color:#000000"><strong>UXPA International Conference 2025</strong> will be held in Amsterdam 16-19 June 2025.</span></span></p>  <p><span style="font-size:18px">UXPA seeks proposals for various<strong> conference tracks, disciplines, types of talks and audience levels</strong>:</span></p>  <p><span style="font-size:18px"><strong>Tracks:</strong></span></p>  <ol> 	<li><span style="font-size:18px">Career Development</span> 	<li><span style="font-size:18px">Emerging Technologies</span> 	<li><span style="font-size:18px">Tools &amp; Techniques</span> 	<li><span style="font-size:18px">UX Strategy</span> 	<li><span style="font-size:18px">UX Leadership</span> 	<li><span style="font-size:18px">DEIA</span> </ol>  <p><span style="font-size:18px"><strong>Disciplines</strong> (optional):</span></p>  <ul> 	<li><span style="font-size:18px">UX Design</span> 	<li><span style="font-size:18px">Visual Design</span> 	<li><span style="font-size:18px">UX Research</span> 	<li><span style="font-size:18px">Content Strategy</span> 	<li><span style="font-size:18px">Content Writing</span> 	<li><span style="font-size:18px">Design Ops</span> </ul>  <p><span style="font-size:18px"><strong>Type of talk</strong>:</span></p>  <ul> 	<li><span style="font-size:18px">60-minute talk</span> 	<li><span style="font-size:18px">60-minute panel</span> 	<li><span style="font-size:18px">3-hour course with honorarium of 500-1000 euros</span> 	<li><span style="font-size:18px">"Poster" - make a poster about what you did, and explain it to people</span> </ul>  <p><span style="font-size:18px"><strong>Audience level</strong></span></p>  <ul> 	<li><span style="font-size:18px">Entry level</span> 	<li><span style="font-size:18px">Mid level</span> 	<li><span style="font-size:18px">Senior level</span> </ul>  <p><span style="font-size:18px"><strong>What happens after you submit a proposal</strong>:</span></p>  <ul> 	<li><span style="font-size:18px">5 anonymous people will review it and comment on it.</span> 	<li><span style="font-size:18px">Chairpersons will review proposals and comments.</span> 	<li><span style="font-size:18px">Top proposals will be shortlisted.</span> 	<li><span style="font-size:18px">Full conference committee will select proposals for final program.</span> 	<li><span style="font-size:18px">Note that<strong> for every proposal you submit, you must review 3 proposals of others</strong>.</span> 	<li><span style="font-size:18px"><strong>One individual per accepted proposal</strong> will get a 300 euro discount on conference registration.</span> </ul>  <p><span style="font-size:18px"><strong>App which you must use to submit proposals</strong> is here:</span></p>  <p><span style="font-size:18px"><a target="_blank" rel="nofollow" href="https://coms.app/uxpa2025"><u><strong><a href="https://coms.app/uxpa2025" rel="nofollow" >https://coms.app/uxpa2025</a></strong></u></a></span></p>  <p><span style="font-size:18px"><strong>Help with questions</strong> is here:</span></p>  <p><span style="font-size:18px"><a target="_blank" rel="nofollow" href="https://forms.gle/dC8YNNGHhkNfAgYk8"><strong><a href="https://forms.gle/dC8YNNGHhkNfAgYk8" rel="nofollow" >https://forms.gle/dC8YNNGHhkNfAgYk8</a></strong></a></span></p>  <p><span style="font-size:18px">or here:</span></p>  <p><span style="font-size:18px"><a target="_blank" rel="nofollow" href="mailto:chair2025@uxpa.org"><u><strong>chair2025@uxpa.org</strong></u></a></span></p>  <p><span style="font-size:18px"><strong>Comment:</strong> Should be a wonderful conference. Too bad so far away.</span></p>]]></content:encoded>
</item>

<item>
<title>Google to begin including photos in Local Service Ads</title>


<description>Google says photos will improve ad rank</description>

<link>https://www.davidhboggs.com/blog/conversion-rate-optimization/google-to-begin-including-photos-in-local-service-ads-3908-thread.html</link>
<pubDate>Tue, 20 Aug 2024 16:56:18 GMT</pubDate>
<guid>https://www.davidhboggs.com/blog/conversion-rate-optimization/google-to-begin-including-photos-in-local-service-ads-3908-thread.html</guid>
<content:encoded><![CDATA[<p><img src="https://www.davidhboggs.com/blog/ckuploader.php?action=viewimage&amp;image=Z29vZ2xlbHNhMDc2Yi5wbmc=" style="height:100%; width:100%" /></p>  <h1><span style="color:#990000"><strong>Google to begin including photos in Local Service Ads</strong></span></h1>  <p><span style="font-size:18px"><strong>According to Google Ads Liaison Ginny Marvin</strong>, Google will now begin selecting photos from advertisers LSA profiles to show in their ads.</span></p>  <p><span style="font-size:18px">In March, Google began asking LSA advertisers for photos in an email that included the <strong>screencap, above</strong>.</span></p>  <p><span style="font-size:18px">For the first time, Google has said that photos in LSA ads can help <strong>improve ad ranking</strong>; also that Google will select photos "based on their likelihood to increase engagement with your ad." But ads may not also include photos, "depending on the user query and other factors."</span></p>  <p><span style="font-size:18px">Google recommends uploading at least 3 images.</span></p>  <p><span style="font-size:18px">Google&#39;s LSA photo guidelines include:</span></p>  <ul> 	<li><span style="font-size:18px">high-quality images</span> 	<li><span style="font-size:18px">images showing you performing work</span> 	<li><span style="font-size:18px">images relevant to your business</span> 	<li><span style="font-size:18px">original images</span> 	<li><span style="font-size:18px">no phone numbers or other identifying information</span> 	<li><span style="font-size:18px">images showing customers (for some types of businesses)</span> 	<li><span style="font-size:18px">formats: JPEG, PNG, BMP, ICO, WEBP</span> 	<li><span style="font-size:18px">resolution 640px x 640px or better</span> 	<li><span style="font-size:18px">max filesize 10 MB</span> </ul>  <p><span style="font-size:18px">Initially, LSA ads will include photos in the USA and Canada only.</span></p>  <p><span style="font-size:18px">And Google will not be sharing any analytics data - clicks, impressions, etc. - at this time.</span></p>]]></content:encoded>
</item>

<item>
<title>Longer mobile video ads convert better</title>


<description>31-60 second ads convert up to 50% better than shorter videos</description>

<link>https://www.davidhboggs.com/blog/conversion-rate-optimization/longer-mobile-video-ads-convert-better-3696-thread.html</link>
<pubDate>Sat, 25 Feb 2023 20:12:56 GMT</pubDate>
<guid>https://www.davidhboggs.com/blog/conversion-rate-optimization/longer-mobile-video-ads-convert-better-3696-thread.html</guid>
<content:encoded><![CDATA[<p><img src="https://www.davidhboggs.com/blog/ckuploader.php?action=viewimage&amp;image=aW5zdGFncmFtYWRzNGYxNi5wbmc=" style="height:100%; width:100%" /></p>  <h1><span style="color:#990000">Longer mobile video ads convert better</span></h1>  <p><span style="font-size:18px">Redwood, CA-based mobile advertising specialists <a target="_blank" rel="nofollow" href="https://liftoff.io/"><u><strong>Liftoff</strong></u></a> have released a report showing that based on data from their customers (mainly mobile app creators) <strong>video ads 31-60 seconds long are converting at "up to" 50% higher rates</strong> than do shorter video ads.</span></p>  <p><span style="font-size:18px">They theorize that this is happening because longer ads are better able to <strong>showcase the features of apps</strong>, and better permit <strong>ads to tell stories</strong>.</span></p>  <p><span style="font-size:18px"><strong>Their recommendations for video advertisers are:</strong></span></p>  <ul> 	<li><span style="font-size:18px">To save time and money, rather than starting from scratch, stitch together some existing shorter videos.</span> 	<li><span style="font-size:18px">Develop a well-rounded story with a compelling hook and a satisfying conclusion.</span> 	<li><span style="font-size:18px">Use longer ads to show off the features of your app and reach a broader audience.</span> </ul>  <p><span style="font-size:18px"><strong>Comments: </strong>Some mobile video ad facts</span></p>  <ul> 	<li><span style="font-size:18px"><strong>Among ad formats, video ads most engage the user.</strong></span> 	<li><span style="font-size:18px"><strong>75% of video ads</strong> are consumed on mobile devices.</span> 	<li><span style="font-size:18px"><strong>98% of persons aged 18-34</strong> watch videos on smartphones daily.</span> 	<li><span style="font-size:18px"><strong>More than 60%</strong> of digital video campaigns were run on mobile devices in 2022.</span> 	<li><span style="font-size:18px">Smartphone owners use their devices an average of 170 minutes daily.</span> 	<li><span style="font-size:18px">Mobile video ads lend themselves to both<strong> behavioral and contextual targeting</strong>.</span> 	<li><span style="font-size:18px">Mobile video campaigns can be <strong>developed and deployed at lower cost</strong> than traditional ad forms.</span> </ul>]]></content:encoded>
</item>

</channel>
</rss>