<?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>Blueurl</title>
	<atom:link href="http://blueurl.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blueurl.com</link>
	<description>Add Directory Submit and eCommerce URL Web Hosting</description>
	<lastBuildDate>Wed, 03 Apr 2013 06:31:31 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://blueurl.com/?v=3.4.1</generator>
		<item>
		<title>Fix Space Gap in Google+ Twitter Social Buttons with CSS</title>
		<link>http://blueurl.com/social-marketing/fix-space-gap-google-plus-twitter-social-buttons-css/</link>
		<comments>http://blueurl.com/social-marketing/fix-space-gap-google-plus-twitter-social-buttons-css/#comments</comments>
		<pubDate>Mon, 27 Aug 2012 05:57:37 +0000</pubDate>
		<dc:creator>Blueurl</dc:creator>
				<category><![CDATA[Social Marketing]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Social Button]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://blueurl.com/?p=857649824657198103</guid>
		<description><![CDATA[<p>Social sharing button from Facebook, Twitter, Google+, and such is a great way to broadcast your content and message through viral user networks. But these social sharing buttons come with different visual design, sizes, layouts, programming languages, etc. Often you will run into issue to consolidate and integrate them together seamlessly into your overall website [...]</p><p>The post <a href="http://blueurl.com/social-marketing/fix-space-gap-google-plus-twitter-social-buttons-css/">Fix Space Gap in Google+ Twitter Social Buttons with CSS</a> appeared first on <a href="http://blueurl.com">Blueurl</a>.</p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://blueurl.com/wp-content/uploads/social-marketing/fix-space-gap-google-plus-twitter-social-buttons-css.png"><img class="alignleft size-full wp-image-857649824657198107" title="Fix Space Gap in Google+ Twitter Social Buttons with CSS" src="http://blueurl.com/wp-content/uploads/social-marketing/fix-space-gap-google-plus-twitter-social-buttons-css.png" alt="Fix Space Gap in Google+ Twitter Social Buttons with CSS" width="302" height="201" /></a>Social sharing button from Facebook, Twitter, Google+, and such is a great way to broadcast your content and message through viral user networks. But these social sharing buttons come with different visual design, sizes, layouts, programming languages, etc. Often you will run into issue to consolidate and integrate them together seamlessly into your overall website design.</p>
<p><span style="font-size: large;"><strong>Google +1 Button Horizontal Gap Issue</strong></span></p>
<p>With the most commonly-used medium-size +1 button with horizontal bubble count from Google+, the width is fixed at 90px (Google+, Pinterest, etc.) by default. Google does not provide a way for you to customize the width value. According to <a href="https://developers.google.com/+/plugins/+1button/#button-sizes" rel="nofollow">Google +1 Button Doc</a>, the bubble portion on the right reserved for the count is even wider than the width of the +1 button itself. That is a lot of space reserved for user +1s (up to 4 digits to be filled). With this default setting, if you concatenate Google+, Twitter, and other social buttons together side-by-side like we do above, you will see a lot of horizontal space gap in-between the buttons initially until you have thousands of user +1s on the page. Statistically, 99% of all the web pages worldwide will fall under this threshold. Following is an example:</p>
<div id="btns" style="vertical-align: baseline;">
<div id="btn-google+" style="float: left;">
<div class="g-plusone" data-size="medium"></div>
</div>
<div id="btn-twitter" style="float: left;"><a class="twitter-share-button" href="https://twitter.com/share" data-lang="en">Tweet</a><br />
<script type="text/javascript">// <![CDATA[
!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="https://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
// ]]&gt;</script></div>
</div>
<div style="clear: both;"></div>
<div style="clear: both;">
<p>&nbsp;</p>
<p><span style="font-size: large;"><strong>Twitter Button Horizontal Gap Issue</strong></span></p>
<p>With the most commonly-used tweet button with horizontal count format  from Twitter, the width is fixed at 110px (Twitter, Buffer, etc.). According to <a href="https://dev.twitter.com/docs/tweet-button/faq#dimensions" rel="nofollow">Twitter Button FAQ</a> and <a href="https://dev.twitter.com/docs/tweet-button" rel="nofollow">Documentation</a>, the 55 pixels on the right half is reserved for the count &#8211; same as the width of Twitter button itself. That is a lot of space reserved for user tweets (up to 5 digits to be filled). And it is even wider for the international language versions &#8211; Japanese button at 130px total. With this default setting, if you concatenate Twitter, Google+, and other social buttons together side-by-side like we do above, you will see a lot of horizontal space gap in-between the buttons initially until you have thousands of user tweets on the page. Statistically, 99% of all the web pages worldwide will fall under this threshold.</p>
<p>Note: The Twitter button issue seems only related to the iFrame version of their button. The JavaScript version of the button code seems working fine with dynamically-adjusted count bubble width.</p>
</div>
<p><script type="text/javascript">// <![CDATA[
(function() {     var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;     po.src = 'https://apis.google.com/js/plusone.js';     var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);   })();
// ]]&gt;</script></p>
<p><span style="font-size: large;"><strong>Solution #1: Use Javascrip Button Code (Twitter-only)<br />
</strong></span></p>
<p>For the people who is having space gap issue with their iFrame version of the Twitter button code, we recommend to change to Twitter&#8217;s Javascript version button code. Your issue should goes away. If for some reason, you cannot or do not want to switch to the JavaScript version, try the solution #2 below.</p>
<p><span style="font-size: large;"><strong>Solution #2: Use Custom CSS Override</strong></span></p>
<p>Alternatively, you can change the button size and position by applying custom CSS override on the specific button &lt;div&gt; id or class definition. You cannot change the value of the button CSS &lt;div&gt; attributes and values directly in button render code or on web page because the button HTML elements are generated on the server-side dynamically. But you can define CSS override in your own CSS file with the desired width value. For example in the Google +1 button, the 1st +1 button &lt;div&gt; id is &#8220;___plusone_0&#8243; (Note: the 2nd +1 button id will be &#8220;___plusone_1&#8243; and so forth if you have multiple +1 button on the same web page). To change the +1 button and bubble width from 90px to 70px, you can define the following custom CSS:</p>
<p>#___plusone_0 {<br />
width: 70px !important;<br />
}</p>
<p>To change the Tweet button and bubble width from 110px to 90px, you can define the following custom CSS:</p>
<p>.twitter-share-button {<br />
width: 90px !important;<br />
}</p>
<p>The !important code is necessary to make it work if your button HTML is wrapped in a &lt;iframe&gt; tag in the iFrame-version code. Otherwise you can leave it out. You can see the end result from the social button row at the top of this page. You should obviously adjust your max width for each social button as your audience count grow in order to show all the counts. Our solution is only to provide you a way to dynamically adjust it based on your need at least till Google+ and others come up with a more dynamic solution.</p>
<p>The same technique can be used to customize almost every aspect of the button CSS layout format such as width, height, position, align, margin, padding, font, text color, background color, border, etc. for almost all social buttons as long as you can identify the button &lt;div&gt; class name.</p>
<p>Like this post? Follow us on <a href="http://www.facebook.com/blueurl">Facebook</a>, <a href="https://plus.google.com/115660685908309970820?rel=author">Google+</a>, <a href="http://twitter.com/blueurl">Twitter</a>, or <a href="http://feeds.feedburner.com/blueurl">Blog</a> for more updates. Connect with us if you think our post are helpful to you. We would love to hear your success.</p>
<p>The post <a href="http://blueurl.com/social-marketing/fix-space-gap-google-plus-twitter-social-buttons-css/">Fix Space Gap in Google+ Twitter Social Buttons with CSS</a> appeared first on <a href="http://blueurl.com">Blueurl</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blueurl.com/social-marketing/fix-space-gap-google-plus-twitter-social-buttons-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Make Awesome Facebook Fan Page in 10 Steps &#8211; Part 2</title>
		<link>http://blueurl.com/seo-marketing/how-to-make-awesome-facebook-fan-page-in-10-steps-part-2/</link>
		<comments>http://blueurl.com/seo-marketing/how-to-make-awesome-facebook-fan-page-in-10-steps-part-2/#comments</comments>
		<pubDate>Sun, 26 Aug 2012 09:40:24 +0000</pubDate>
		<dc:creator>Blueurl</dc:creator>
				<category><![CDATA[eCommerce]]></category>
		<category><![CDATA[SEO Marketing]]></category>
		<category><![CDATA[Social Marketing]]></category>
		<category><![CDATA[Branding]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Facebook Page]]></category>
		<category><![CDATA[Social]]></category>

		<guid isPermaLink="false">http://blueurl.com/?p=857649824657198098</guid>
		<description><![CDATA[<p>Previous Post:  How to Make Awesome Facebook Fan Page in 10 Steps – Part 1 Step 6: Create Page Header Section Header Picture &#8211; Upload your profile picture and cover photo from Step 2 and 3 to the business page Page Info &#8211; Enter your complete page information under Edit Page -&#62; Update Info. Most [...]</p><p>The post <a href="http://blueurl.com/seo-marketing/how-to-make-awesome-facebook-fan-page-in-10-steps-part-2/">How to Make Awesome Facebook Fan Page in 10 Steps &#8211; Part 2</a> appeared first on <a href="http://blueurl.com">Blueurl</a>.</p>]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://blueurl.com/wp-content/uploads/how-to-make-awesome-facebook-fan-page-design-10-steps.jpg"><img class="alignleft size-medium wp-image-857649824657198097" title="how-to-make-awesome-facebook-fan-page-design-10-steps" src="http://blueurl.com/wp-content/uploads/how-to-make-awesome-facebook-fan-page-design-10-steps-300x188.jpg" alt="" width="300" height="188" /></a>Previous Post:  <a title="How to Make Awesome Facebook Fan Page in 10 Steps – Part 1" href="../seo-marketing/how-to-make-awesome-facebook-fan-page-in-10-steps-part-1/">How to Make Awesome Facebook Fan Page in 10 Steps – Part 1</a></strong></p>
<p><span style="font-size: large;"><strong>Step 6: Create Page Header Section</strong></span></p>
<ul>
<li><strong>Header Picture</strong> &#8211; Upload your profile picture and cover photo from Step 2 and 3 to the business page<strong></strong></li>
</ul>
<ul>
<li><strong>Page Info</strong> &#8211; Enter your complete page information under Edit Page -&gt; Update Info<strong>.</strong> Most importantly, put your brand name into &#8220;Name&#8221;<strong>, </strong>Slogan and short introduction into &#8220;About&#8221;, and website domain URL into &#8220;Website&#8221;.</li>
</ul>
<p><em><em>Our Advice: </em>You should include your full domain URL at the end the &#8220;About&#8221; field and it will turn into a clickable link in the header right after your slogan and introduction.<br />
</em></p>
<p><span style="font-size: large;"><strong>Step 7: Auto Content Posting from Publishing Platform<br />
</strong></span></p>
<p>Now your page is up, you need to feed as much quality content to it as possible. One best way to start is to auto-post your content from your content publishing platform from Step 4 to your Facebook page(s). Some hosting platforms (e.g. Blueurl&#8217;s <a href="http://blueurl.com/blueurl/">BlueMarketing Plan</a>) have the feature of connecting with multiple personal social profiles and business pages for auto-posting contents from its publishing platform.</p>
<p><em><em>Our Advice: Handle 30-40% of your social posting this way to reduce the time spent on managing numerous postings across many of your social properties.<br />
</em></em></p>
<p><span style="font-size: large;"><strong>Step 8: Semi-Auto Content Posting from Social Software</strong></span></p>
<p>Although auto-publishing is great for automating the content flow, do not rely solely on this method. Unique and personalized contents for each of your social channels would tailor you to a much broader audience from more market segments. There are many free and paid 3rd-party social management tools including <a href="http://www.tweetdeck.com/" rel="nofollow">TweetDeck</a>, <a href="http://hootsuite.com" rel="nofollow">Hootsuite</a>, <a href="https://seesmic.com/" rel="nofollow">Seesmic</a>, <a href="http://sproutsocial.com" rel="nofollow">Sprout Social</a>, <a href="http://argylesocial.com/" rel="nofollow">Argyle Social</a>, and <a href="http://sendible.com" rel="nofollow">Sendible</a> you can leverage to achieve that goal. You need to set up and authorize multiple account profiles with your social accounts and then manually trigger or schedule your next update to post at certain day/time to certain social accounts all at once.</p>
<p><em><em>Our Advice: <em><em> Handle 40-50% of your social posting this way. It is a great balance between productivity and flexibility.</em></em></em></em></p>
<p><span style="font-size: large;"><strong>Step 9: Manual Content Posting on Facebook.com</strong></span></p>
<p>There is no replacement to sharing content natively on Facebook.com. Actually some features and tools such as Questions/Polls and Webcam Video are only available on the Facebook portal. You have the total control over how your content will show exactly on your business page and what engagement tools to use. Although Facebook do have a feature to connect and post your Facebook content for you to your Twitter account, we do not usually recommend it unless you will be using primarily your Facebook page as your authoritative content publishing platform for press release, blog, articles, etc. Otherwise, it is a much flexible option to host your own publishing platform so you can more easily integrate with Google and other social networks for SEO and social sharing.</p>
<p><em><em>Our Advice: <em><em> Handle 20-30% of your social posting this way for adding unique engagement and personalized content to your page.</em></em></em></em></p>
<p><span style="font-size: large;"><strong>Step 10: Connect Your Facebook Page and Main Website</strong></span></p>
<p>Lastly you want to cross link your Facebook page with your main website to convert interest to action and then to the next interest.</p>
<ul>
<li><strong>On Your Facebook Page</strong> &#8211; Link the relevant keywords from your page postings to their related call-to-action product landing web pages. Make your landing page informational and convincing to maximize the conversion rate. Use great images, infographics, videos, tables, lists, etc. to visualize and emphasis your message within 10 seconds. The same on-page SEO principal used for SERP click-through also applies here.</li>
<li><strong>On Your Main Website</strong> &#8211; Create text or image links pointing to your Facebook page in your site header or footer section to drive traffic and search ranking back to your social presence. Also add the new Facebook Like (user sharing with all their contacts) and Send (user sharing with selected groups or friends) buttons to every web pages by generating and adding the HTML5 and Javascript code from the <a href="http://developers.facebook.com/docs/reference/plugins/like/" rel="nofollow">Like Plugin</a> page.</li>
</ul>
<p><em><em>Our Advice: Your main website and your social pages work like a tag team. Persistence, creativity, and collaboration are your best friends to lead you to your success!</em></em></p>
<p><strong></strong>Like this post? Like and Follow us on <a href="http://www.facebook.com/blueurl">Facebook</a>, <a href="https://plus.google.com/115660685908309970820?rel=author">Google+</a>, <a href="http://twitter.com/blueurl">Twitter</a>, or <a href="http://feeds.feedburner.com/blueurl">Blog</a> for more updates. Drop us a note if you think our post are helpful to you. We would love to hear your success.</p>
<p>The post <a href="http://blueurl.com/seo-marketing/how-to-make-awesome-facebook-fan-page-in-10-steps-part-2/">How to Make Awesome Facebook Fan Page in 10 Steps &#8211; Part 2</a> appeared first on <a href="http://blueurl.com">Blueurl</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blueurl.com/seo-marketing/how-to-make-awesome-facebook-fan-page-in-10-steps-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Make Awesome Facebook Fan Page in 10 Steps &#8211; Part 1</title>
		<link>http://blueurl.com/seo-marketing/how-to-make-awesome-facebook-fan-page-in-10-steps-part-1/</link>
		<comments>http://blueurl.com/seo-marketing/how-to-make-awesome-facebook-fan-page-in-10-steps-part-1/#comments</comments>
		<pubDate>Sun, 26 Aug 2012 09:27:45 +0000</pubDate>
		<dc:creator>Blueurl</dc:creator>
				<category><![CDATA[eCommerce]]></category>
		<category><![CDATA[SEO Marketing]]></category>
		<category><![CDATA[Social Marketing]]></category>
		<category><![CDATA[Branding]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Facebook Page]]></category>
		<category><![CDATA[Social]]></category>

		<guid isPermaLink="false">http://blueurl.com/?p=857649824657198094</guid>
		<description><![CDATA[<p>Creating an awesome Facebook business fan page is a must nowadays to cultivate your online communities, participation, retention, traffic, lead generation, and ultimately revenue impact. What are the key elements and consideration in the design process? How to make it applicable to my business? and so forth. We have received many inquiries from our audience about [...]</p><p>The post <a href="http://blueurl.com/seo-marketing/how-to-make-awesome-facebook-fan-page-in-10-steps-part-1/">How to Make Awesome Facebook Fan Page in 10 Steps &#8211; Part 1</a> appeared first on <a href="http://blueurl.com">Blueurl</a>.</p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://blueurl.com/wp-content/uploads/how-to-make-awesome-facebook-fan-page-design-10-steps.jpg"><img class="alignleft size-medium wp-image-857649824657198097" title="how-to-make-awesome-facebook-fan-page-design-10-steps" src="http://blueurl.com/wp-content/uploads/how-to-make-awesome-facebook-fan-page-design-10-steps-300x188.jpg" alt="" width="300" height="188" /></a>Creating an awesome Facebook business fan page is a must nowadays to cultivate your online communities, participation, retention, traffic, lead generation, and ultimately revenue impact. What are the key elements and consideration in the design process? How to make it applicable to my business? and so forth.</p>
<p>We have received many inquiries from our audience about how to design and set up a great page like <a title="Blueurl Facebook Fan Page" href="http://www.facebook.com/blueurl">Blueurl Facebook page</a>. So we decide to write a how-to blog post to share with you the design best practices step-by-step. We&#8217;ll update this article as needed in the future as the technology and business process evolve (they always do).</p>
<p><span style="font-size: large;"><strong>Step 1: Prepare Your Brand Personality &amp; Style</strong></span></p>
<p>While most of articles online focusing on the technical details, we think a killer Facebook page implementation starts with your brand personality, what your business represents and how you would like your brand to be viewed by audience, just like people. This is more of an art and business than science and technology. And a business should have a very distinct brand personality in order to stand out from the crowd. If you don&#8217;t, you might want to really spend some time now thinking through it before starting to build your business. Here is our case study below to jump start your thinking:</p>
<blockquote><p><strong></strong>&#8220;We define ourselves as the newest breed of cloud commerce application provider targeting at young, entrepreneurial, and business-savvy audience segment &#8211; men or women. We can sum up our brand personality in 3 words: Stylish, Collaborative, and Lifehacking<em></em>. It is a cool blend of stylishness, openness, with geekiness in its soul.&#8221;</p></blockquote>
<p><em>Our Advice: <em>Think creatively and heartily about your goal and passion against the brand your are creating.</em></em></p>
<p><span style="font-size: large;"><strong>Step 2: Design Brand Logo, Slogan, Typography, and Colors</strong></span></p>
<p>Taking the brand personality from above, we can then start the design for the key brand assets. They are all very important pre-work to define your brand image to the public. The small investment and time here will be rewarded big time later on. Switching and retroactively-fixing your brand design and message is VERY painful and costly from our experience.</p>
<ul>
<li><strong>Logo -</strong> this is probably the single most important branding piece you can get. Many large enterprise update their log design from time-to-time to meet their new business model and branding need, as demonstrated by <a href="http://blogs.technet.com/b/microsoft_blog/archive/2012/08/23/microsoft-unveils-a-new-look.aspx" rel="nofollow">Microsoft&#8217;s Logo Re-design</a> recently. Use no more than 3 colors in most cases.<strong> </strong></li>
<li><strong>Profile</strong> <strong>Picture</strong> &#8211; Facebook&#8217;s default profile picture size is 160 x 160 px. Try to create a picture at exactly or larger than that size for upload. Never upload a profile picture with size smaller than 160 x 160 px. <strong> </strong></li>
<li><strong>Avatar &#8211; </strong>Facebook use the same profile picture for avatar. Make sure you select a profile picture which can be recognized in the Avatar size. Usually a vector-based art is way better than a photo with &#8220;noisy&#8221; details here for both viewing and branding purpose.<strong></strong></li>
<li><strong>Slogan &#8211; </strong>Pick a short slogan to quickly summarize your business model or selling point. Being concise, creative, and to-the-point is the key here.<strong></strong></li>
<li><strong>Typography &#8211; </strong>This is another killer element which can grab visitor&#8217;s eyebal<strong></strong>l. As a rule of thumb, each website should have at least 1 main typography and 1 decorative typography with 3 weight options each. Thanks to the open-source initiative, there are now hundreds of free fonts you can choose from <a href="http://www.fonts.com/" rel="nofollow">Fonts.com</a>, <a href="http://www.google.com/webfonts/" rel="nofollow">Goolge Web Fonts</a>, etc.</li>
<li><strong>Colors &#8211; </strong>A solid and consistent color system lays the foundation to the overall brand visual language. Just like people, your choice of colors directly reflects your brand personality. It is a silent language as we call it. Whether you go with mono, blue, red, or orange palette, you should make sure they are used consistently across your main website and marketing channels. Usually no more than 4 core colors should be used. And white should always be one of them.<strong> </strong></li>
</ul>
<p><em><em>Our Advice: </em>Spend a little more time here coming up with an excellent design yourself or hiring a superb brand designer rather than rushing into building the actual marketing portal.</em></p>
<p><span style="font-size: large;"><strong>Step 3: Prepare Graphic Assets</strong></span></p>
<ul>
<li><strong>Cover Photo</strong> &#8211; Your default Facebook page header size is 851 x 315 px, sRGB JPEG &lt; 100KB<strong></strong>. We recommend that you create a picture at exactly this size to avoid any loss on details by Facebook uploader resizing. Pick the best quality picture with the finest details. Either a photo or vector art work here. Also the page header image should tell a story to your visitors within 5 seconds like an elevator pitch. Check out our <a href="http://www.facebook.com/blueurl">Facebook Page</a> header section for an example.</li>
<li><strong>Post Images</strong> &#8211; Your specific post image may come from your own upload or 3rd-party websites if you share link from them. When you upload your own post image, your image will be shown across half of the Facebook timeline more than 300px wide. Therefore selecting a great-looking image to upload is crucial to grab people&#8217;s attention.</li>
</ul>
<p><em><em>Our Advice: </em>Always go with the best-quality graphics you can possibly create or get. It beats a thousand words. Cover photo is 100x more important than the others.<br />
</em></p>
<p><span style="font-size: large;"><strong>Step 4: Register Your Main Domain &amp; Website</strong></span></p>
<p>Now you are finally ready to build. First, you need to make sure you have a domain (www.mydomain.com) and commerce-enabled website registered to be the base for your Facebook channel.You need to be able to edit your web page HTML in order to integrate it with your Facebook page. The hosting package you acquired should include:</p>
<ul>
<li><strong>A Content-Generation and Publishing Platform</strong> &#8211; for authoring and publishing your blogs, articles, press releases, image gallery, infographics, videos, wikis, tutorials, classes, and RSS in a WYSIWYG environment to be shared with your Facebook pages and other marketing channels.</li>
<li><strong>A Commerce-enable Transaction Platform</strong> &#8211; for landing your Facebook fan click-through onto an page they can take further actions to buy, subscribe, download, play, or learn from you.</li>
</ul>
<p><em><em>Our Advice: </em>You&#8217;ll get the best value by integrating your Facebook page auto-posting with an all-in-one <em>marketing</em> and eCommerce hosting service such as our <a href="http://blueurl.com/blueurl/">BlueMarketing</a> or <a href="http://blueurl.com/blueurl/">BlueCommerce</a> App.<br />
</em></p>
<p><span style="font-size: large;"><strong>Step 5: Create Facebook Account &amp; Business Page</strong></span></p>
<ul>
<li><strong>Facebook Account</strong> &#8211; You must have a personal Facebook account in order to create a business or brand page. Do not create a Facebook account with your business name and information as this is against the Facebook term of use and may get your account banned.</li>
<li><strong><strong>Facebook </strong>Business Page</strong> &#8211; Once you have a Facebook account, go to http://www.facebook.com/pages/create.php to create a business page. Select a page type say for example &#8220;Brand or Product&#8221; and your brand or product name.</li>
<li><strong>Short URL &amp; Username</strong> &#8211; Now here is important: For the very 1st business page you create under each Facebook account, the Brand or Product Name you entered will automatically become the short URL username (e.g. http://www.facebook.com/myfirstbrand) during page creation. For the 2nd page and beyond, your page URL will be the long version (e.g. http://www.facebook.com/pages/mysecondbrand/123456789012345). You can only apply for the short URL at https://www.facebook.com/username in the future when the page become eligible (usually when the page has more fans).</li>
<li><strong>Multiple Page Managers</strong> &#8211; The Facebook account who created the business page become the default manager. You can add multiple co-managers to a single page under Edit Page -&gt;Admin Roles.</li>
</ul>
<p><em><em>Our Advice: </em>Create different business page(s) under different Facebook account(s) with your preferred brand name(s) and reserve the short URL username. Identify one primary account and then add it to be the co-manager of all your business pages across multiple accounts for central management.</em></p>
<p>Continue: <a title="How to Make Awesome Facebook Fan Page in 10 Steps – Part 2" href="../seo-marketing/how-to-make-awesome-facebook-fan-page-in-10-steps-part-2/">How to Make Awesome Facebook Fan Page in 10 Steps – Part 2</a></p>
<p>Like this post? Like and Follow us on <a href="http://www.facebook.com/blueurl">Facebook</a>, <a href="https://plus.google.com/115660685908309970820?rel=author">Google+</a>, <a href="http://twitter.com/blueurl">Twitter</a>, or <a href="http://feeds.feedburner.com/blueurl">Blog</a> for more updates. Drop us a note if you think our post are helpful to you. We would love to hear your success.</p>
<p>The post <a href="http://blueurl.com/seo-marketing/how-to-make-awesome-facebook-fan-page-in-10-steps-part-1/">How to Make Awesome Facebook Fan Page in 10 Steps &#8211; Part 1</a> appeared first on <a href="http://blueurl.com">Blueurl</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blueurl.com/seo-marketing/how-to-make-awesome-facebook-fan-page-in-10-steps-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google+ Branding with Custom Vanity URL Rollout</title>
		<link>http://blueurl.com/social-marketing/google-plus-branding-with-custom-vanity-url-rollout/</link>
		<comments>http://blueurl.com/social-marketing/google-plus-branding-with-custom-vanity-url-rollout/#comments</comments>
		<pubDate>Tue, 14 Aug 2012 23:16:10 +0000</pubDate>
		<dc:creator>Blueurl</dc:creator>
				<category><![CDATA[Social Marketing]]></category>
		<category><![CDATA[Branding]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Social]]></category>

		<guid isPermaLink="false">http://blueurl.com/?p=857649824657198091</guid>
		<description><![CDATA[<p>The History For a little less than a year since Google officially launched its social network, Google+ users had to bear with the long and many consider hard to memorize profile or page URLs featured by a 21-digit all-numeric ID sub-directory looking like this:  https://plus.google.com/171737345584353564962/posts. Google+ Custom Vanity URLs Roll-out This week Google finally made [...]</p><p>The post <a href="http://blueurl.com/social-marketing/google-plus-branding-with-custom-vanity-url-rollout/">Google+ Branding with Custom Vanity URL Rollout</a> appeared first on <a href="http://blueurl.com">Blueurl</a>.</p>]]></description>
			<content:encoded><![CDATA[<h4><a href="http://blueurl.com/wp-content/uploads/social-marketing/google-plus-branding-with-custom-vanity-url-rollout.png"><img class="alignleft size-medium wp-image-857649824657198093" title="google-plus-branding-with-custom-vanity-url-rollout" src="http://blueurl.com/wp-content/uploads/social-marketing/google-plus-branding-with-custom-vanity-url-rollout-300x227.png" alt="" width="300" height="227" /></a>The History</h4>
<p>For a little less than a year since Google officially launched its social network, Google+ users had to bear with the long and many consider hard to memorize profile or page URLs featured by a 21-digit all-numeric ID sub-directory looking like this:  https://plus.google.com/171737345584353564962/posts.</p>
<h4>Google+ Custom Vanity URLs Roll-out</h4>
<p>This week Google finally made the move to start offering some selected users a way to create their favorite &#8220;shortened&#8221; alpha-numeric version of their sub-directory name. Often people would choose something representative of their brand such as personal name, company name, product brand, domain name, etc. We are excited about this move and do recommend all our <a href="http://blueurl.com/blueurl/">BlueMarketing</a>, <a href="http://blueurl.com/blueurl/">BlueCommerce</a>, and <a href="http://blueurl.com/blueurl/">BlueService</a> plan customers to register their brand name URL in Google+ as it becomes available to the general public. For most of you, this will be your website name you registered for your <a href="http://blueurl.com">Blueurl Cloud Hosting</a> account.</p>
<h4>URL Variations</h4>
<p>There are now a few custom URL variations you can consider as your anchor link with different sub-domain vs. apex-domain and SSL vs. non-SSL combination. We use Toyota Google+ profile as an example here to illustrate (sorted from the shortest to the longest URL):</p>
<ul>
<li><a href="http://google.com/+toyota">http://google.com/+toyota</a>  (preferred)</li>
<li><a href="https://google.com/+toyota">https://google.com/+toyota</a></li>
<li><a href="http://plus.google.com/+toyota">http://plus.google.com/+toyota</a></li>
<li><a href="https://plus.google.com/+toyota">https://plus.google.com/+toyota</a></li>
</ul>
<p>All of them get redirected to the same landing page (<a href="https://plus.google.com/+toyota/posts">https://plus.google.com/+toyota/posts</a>) on your Google+ site when user click through the link. Now although we like the decision Google made to offer custom URL alias to the site level, appending /posts sub-directory to the landing page is still not user-friendly and unnecessary from our branding point of view. Your root directory should be the home page of your Google+ site, period.</p>
<h4>So What Happens Next?</h4>
<p>Google started the initial roll-out of this new feature only to selected customers this week &#8211; namely a sub-group of the well-known businesses and public figures like Toyota and Britney Spears. This is very likely an early round of beta pre-production deployment to verify the functionality and fix any bugs as they arise as the group is so limited at this point. There is no official announcement yet from Google team with regard to when the general availability (GA) of this feature will be.</p>
<p>Soon after this beta testing round is concluded, we predict Google will start the mass invitation to all major brands and significant individuals who have verified Google+ accounts to reserve their preferred brand name before general availability to public. This is necessary to ensure the most important customers get a chance to reserve their trademark terms and names ahead of the public and reduce possible backfire due to trademark disputes. This period will likely takes a couple of month to a few month as the group is not small and there will be expected lag between the invitation/announcement and the action taken by the brands.</p>
<p>Finally, when the grace period is over, announcement will be made to make this feature available to general public. As we saw from the initial rollout of Facebook vanity name back in 2009, we fully expect the initial waves of Google+ vanity URL registration to be HUGE in the first few days as this feature is so awaited for by nearly all the online marketers and webmasters. So if do have a valuable brand you would like to protect, stay very tuned in on <a href="http://googleplusplatform.blogspot.com/">Google+ Developer Blog</a>, <a href="http://feeds.feedburner.com/blueurl">Blueurl Blog</a>, <a href="https://plus.google.com/115660685908309970820?rel=author">Blueurl Google+</a>, Tweets, or other update services in the next few weeks/months!</p>
<p>&nbsp;</p>
<p>The post <a href="http://blueurl.com/social-marketing/google-plus-branding-with-custom-vanity-url-rollout/">Google+ Branding with Custom Vanity URL Rollout</a> appeared first on <a href="http://blueurl.com">Blueurl</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blueurl.com/social-marketing/google-plus-branding-with-custom-vanity-url-rollout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.820 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2018-04-06 19:37:34 -->
