10 Effective Tips on Creating Shareable Social Media Content


What makes content go viral on social media? Is it the shock value or is it relevance? Think about why you remember some posts and not others, and you will see that there is no simple answer. If you have a definite purpose for sharing content other than sheer exuberance, then you need to know how to create effective social media content that suits your needs. Here are some tips to which you should pay attention.


Target your audience
Social networks are geared for particular types of people. Some prefer one social network over another. When you are creating your content, you have to identify your target market so you know what social network will respond more readily to your posts. However, more importantly, you should know your target market thoroughly. You should know their habits, needs, wants, prejudices, and psychology. In other words, you should know where the buttons are so you can push them.
Write stuff they want to read
If you know your target market, you can create content that they will read. You should still keep in mind your purpose for posting (brand awareness, content marketing etc.) but make sure that it is a good fit for your audience. It should offer useful advice, interesting information or entertainment.

Aside from utility, you should strive to get your audience to make an emotional investment in your post. Encourage them to participate in the conversation and to air their opinions. Respond promptly to them and always conclude with an open-ended question. It keeps them coming back for more. You will get more shares that way, which is what you want.
Keep it bite-sized
Create several short posts as opposed to one long chunk. You can overwhelm your audience, if you give them too much information in one helping. Some important information of what you want to say may also get lost in the crowd. Isolate one or two ideas, expound on it in detail and lead them to check your next post for more information. It is easier to digest and remember, and, more importantly, it is much more shareable.
Make it visual

Content is not just about what you say, but what other people see. Pay close attention to how your post looks; it should be easy to scan and follow. People have a tendency to abandon articles that look too hard to read. Avoid long paragraphs; it should have no more than three to five sentences. Lead off with an interesting visual or break up long entries with an illustration. Giving your reader’s eyes a break will keep them engaged.

Use high quality language
You may have something really important or valuable to say, but may not have the skills or time to put a great article together.  They say the mark of a good leader is the ability to delegate. For example, you target Australian women for your marketing campaign and you have a difficult time choosing the right words that would appeal to them. You can outsource content creation at Australian writings to native speakers and professional writers to ensure that you are turning out high quality work. You may also write the content yourself and contract an expert to edit and proofread your content. 

Encourage sharing
You want your content to get as much exposure as possible. That is the whole purpose of social media marketing. You can make it easy for your reader to share your excellent article with their friends by providing them with a Share button. You can even encourage them to do so by offering incentives such as giving them freebies for sharing.
Provide a sharing platform
There is nothing easier to create than a post that gives your audience a chance to share their own accomplishments or experiences. Solicit them to submit photos or videos of their creations, travels, families, and so on. You can make it a contest of it if you want, but it is not always necessary. People enjoy attention, and take every opportunity to get it, even for a little while. When they tag your post or share it so their friends and family can see it, it gives you more exposure.
Engage influencers
There are people who have the credibility and ability to sway public opinion. As a social media marketer, one of your most important tasks is to identify these individuals and get on their good side. Persuade them to share or endorse your content by following them, quoting them or otherwise stroking their ego. At the very least, avoid antagonizing, contradicting or challenging their opinions. They can either make or break you, so tread carefully.
Build trust
You can also become an influencer in your particular niche, if you build a relationship with your audience. Many people engage in social media to get expert advice, so a good way to build trust and rapport with the audience is to provide them with what they need. You can give troubleshooting advice or point them in the right direction to solve their issues. Cultivate a personal approach when answering questions or inquiries so that you appear friendly and approachable. Avoid the temptation to pitch to them at every opportunity; this can harm your credibility. Always provide objective advice; they are more likely to believe you when you do make a pitch.
Tag away
Do not hesitate to tag other people in your post, even if they are not influencers, if they posted something you can connect to your business. Most people find it flattering, and very few will pass over content that specifically mentions them. It will encourage them to like, comment on, or share your post. Tagging is also a good way to get the attention of potential clients if they are already looking for your product or service.  It gives you a foot in the door, and you are doing them a service besides. Nothing is more satisfying than mutual satisfaction.
Creating content that will make a splash on social media is not easy. There are flukes, of course, but in most cases, it requires patience, careful study and a sound strategy to build a presence that can positively affect your business. If you follow the tips given above, and get professional help when you need it, there is no reason why you cannot create content other people will share on social media. 

  

Stephanie Norman from Sydney has been a content marketing specialist and professional writer for 4 years already. She writes business, creative, and academic content as a freelancerYou can follow her at Facebook and Google+.


 

How to change or remove the Newer Post and Older Posts links

This article explains how to hide or change the format of the "Older Posts" and "Newer Post" and "Home" links that are shown at the bottom of Blogger blogs with Layout or Designer templates.


Why are the older and newer posts links used

Most designer and layout templates have links at the bottom of your page of blog posts which let readers navigate back and forward among the list of posts.

This is basic to how a blog is intended to work:  you post regularly, and give people a way to get back to previous posts.

The pager-links are particularly important on pages that are reached using the Label or Archive gadgets, which may show more posts than you normally have on your home page, or displaying in your blog.

But some people want to remove them - and this is fine provided readers have other ways of navigating around the blog.


How to remove "Newer Posts" and "Older Posts" from your blog

To totally remove these items, you just add some new CSS rules to your template in the usual way.

To remove "Older Posts" add:
#blog-pager-older-link {
float: right;
}

To remove "Newer Posts" add:
#blog-pager-older-link {
float: right;
}

Or to remove both of them and the "Home" link that appears in between them, add:
#blog-pager {
display: none;
}

How to format the "Newer Posts" and "Older Posts"

Changing the way that these links look is very similar, you just add the same codes, except instead of 
display: none;
you need to use the CSS element for the effect you want.   For example, to make the text bigger and bold, you might use rules like
font-size: 150%;
font-weight: bold;

You need to put these commands inside the curly brackets, where the display: none; is now - make sure that each component has a semi-colon at the end of it.   It makes the code easier to read if each component is on a new line, but this isn't necessary.

Another option is to swap the "float" commands around to put "older posts" on the left and "newer posts" on the right (I've never quite understood why they were the other way around).


You can also use background images and colours, with elements like:
background-image:url('URL OF YOUR IMAGE');
background-color:#cccccc;

How to change the "Newer Posts" and "Older Posts" text


If you want to change the text values - either to different words, or by replacing them totally with pictures, you need to accept the disadvantages of editing your template.   If this is ok, and you you want to proceed then:

1  Edit your template in the usual way

2  Replace the existing links:
  • To replace the "newer posts" link, find <data:newerPageTitle/>  in your template, and replace it with whatever text you want.
  • To replace the "older posts" link, find <data:olderPageTitle/>  in your template, and replace it with whatever text you want.  
  • To replace the "home" link, find <data:homeMsg/>  in your template, and replace it with whatever text you want.   


In each case, the code you are replacing will be inside some other code, like this:
  <span id='blog-pager-newer-link'>
      <a class='blog-pager-newer-link' expr:href='data:newerPageUrl' expr:id='data:widget.instanceId + &quot;_blog-pager-newer-link&quot;' expr:title='data:newerPageTitle'><data:newerPageTitle/></a>
      </span>
Make sure that you only replace exactly the code listed above, including the < and >'s.   The other code around sets up the links to the actual older or newer posts, and you don't want to change this.

Also, if you want to use a picture instead, replace it with <img alt='...' border='0' src='THE URL OF YOUR PICTURE'/> - of course with the right picture URL put in.

Do make sure that the meaning of your pictures is obvious though - what may look like a cute "newer posts" symbol to you might be totally meaningless to someone else.



Related Articles

How to add a CSS rule to your template

How to edit your blogger template

Understand the advantages and disadvantages of template editing

Finding the URL of a picture in Picasa-web-albums

Understanding designer and layout templates

10 Best Ways to Encourage Your Readers to Share your Blog Content

Getting your blog content shared has been the best marketing way to get more readers into visiting your product page. I normally name this type of content marketing skill as 'Social Media Optimization' because you optimize you blog content for a wider sharing online, which will get your content to be very much recognized online.

Recognition is the greatest aspect of the media, as a blogger you are part of the media industry and use any valid oportunity to get recognition where possible. In this post I will be sharing some of the best ways I will recommend for bloggers out there who look forward into boosting their web content using social media.

Create them the best Content

'The content is king', that has been my main theme when it comes to blog content. your content should be created to help blog readers in an extent that will make your content very useful to them in such that they will be motivated to share online. Content plays a very huge role on the site both on the Search Engines Ranks and Social media.

A mistake that most content makers is being not unique, because basically everybody writes content that is taken from somewhere on the internet. This type of content will definately have difficulty with ranking on the search results because your webpage will be considered as a duplicate and would not rank to its supposed position.

Content doesn't only impact the Search Engines rankings but will also affect the rank and the social influence of the site.

Make Sure you include your loyal readers

Your Blog readers must be included in your posts as this will motivate them into sharing your blog posts. Most of my blog posts are normally an answer to the previous questions that have been asked by my Blog Readers. It has been a proven fact that people are very less to to get rid of somethings having their names included on the content.

Intergrate something that they like

As a blog marketer it is very important that you know what your readers love most about your product because that whats keeps them comming back for more.

Make sharing easy by having icons and buttons

Sharing content cost up some time if done without the use of sharing buttons, the use of sharing buttons on a site is used to encourage readers to share the site content with just a click of a button. As a blogger social media traffic is the best because most readers who visit your site are very much likely to buy your products or subscribe to your site.

Social Media has been the most powerful tool ever to be used to improve the site influence and authority in a niche. Mastering social media marketing will make your site to be very much well known and will also ensure a growth in profit.

Focus more on Value Added Content

Readers like me dont really want to spend reading valueless content which means that the type of content that should please the blog readers must add value to them, and once they are satisfied they will get others to share the content.

Network with influential bloggers in your niche

Influence plays a very big role to any industry, having to get yourself known as a blogger is very difficult but can be achieved only by getting influential bloggers into recognizing you. Most bloggers try to get recognition by posting their web address on other blogs hoping that they might win over some readers.

Having to your blog known will really bost the activity of your blog and cause more readers to share your content. Popularity plays a very important role in social media, whether your blog is not that good but popularity will boost your blog user activity.

The best way to get your site known is done through guest blogging in which you as an author will get an attribute link and also some new visitors who will explore your site.

Make Your Blog Interesting

As a blogger you have to make your blog interesting despite having to use some things to build a newsletter but do give aways just to impress your blog readers. I have seen many blogs posting loads of content and yet they dont get enough traffic which has caused many bloggers to quite blogging.

There are many blogs out there that are providing the type of content that you are providing but you have to spend some time to edify your content in an interesting way which can be done by doing webinars, give aways and competitions.

Tag Your Readers to the Content

The world we live in has become a hashtag world thanks to twitter by introducing hashtags which has made it easier for us marketers to share our content to a targeted audience. Tagging your site readers to your post content will cause them to feel special which is very likely to motivate them into sharing your your content, once they share their content more readers will be invited to visit your page.

Do a compelling call to action

Irrespective of how you write or how bad or good is your writing style, your marketing skills play a good role only if you knew how to use them the right way. Call to action is the best strategy that can be used by bloggers to influence readers into doing something in exchange for something else.

This type of marketing can be done through services like mailchimp, aweber, hellobar and addthis which have worked very well in my recent call to action campaigns.

Use Engaging Marketing

It is not wrong for a blog to do advertising because to be honest as a blogger you will need to advertise your web content to some content advertising services just to snatch some readers. Big businesses use advertising to spread the word about their product or brand, also the same may work blogs as content advertising has been one of the most growing form of advertising which proves that it is worth it.

Getting your readers to share your blog content is not easy but will require you some skill and better understanding of how content marketing is properly done.

How to centre-align the sharing-icons from AddThis in Blogger

This article shows how to get and then centre-align the row of sharing items that you can get from AddThis (and it's likely that a similar technique applies to sharing buttons from other services like ShareThis, too).



If you think that Blogger's own social sharing buttons a just a bit too small and difficult position, then you may decide to use a service like AddThis to generate buttons that are more elegant all round.

Signing up with AddThis is easy: just log in to your Blogger account, and in a separate tab open up AddThis.com. Choose Create Account, and then Continue with Google. This links your Google account and your AddThis account, and is the easiest approach - but there are other options too, like creating your account with your Facebook or Twitter accounts, or even just signing up the old fashioned way with your email address.

Once you have signed up and chosen a plan (personally I just the free "Basic" plan), you need to actually install the AddThis buttons on your site. To do this:
  • Select one or more sets of sharing buttons (from the options available to your account type),
  • Choose the settings which apply to that set of buttons
  • Choose Activate (button in the bottom right corner of the setting screen), and
  • Install the code that AddThis gave you into your blog.

Installing the code that AddThis gave you is pretty much like installing any other piece of code.   Typically the code you have to install has two parts:

For the piece that says:
Step 1: Add the following code to the <body> of your website.
Search for "<body"  (note:  no closing angle-bracket because some templates have extra instructions in there), and then put the code from AddThis after the angle bracket that goes with the <body


For the piece that says:
Step 2: Paste this code into whichever page you would like this tool to show up.
Find the location in your template that you would like the gadget (eg an HTM gadget, or inside the post statement itself - read more about the options), and copy and paste the relevant code from AddThis.




But it's not in the right place.

If you install the code as is from AddThis, you will find that the row of sharing buttons is pretty tightly linked up with the rest of the page, and left-aligned.   Fortunately this is easy to change.


How to centre (or right align) rows of buttons from AddThis 

To put the set of sharing buttons from AddThis at the middle of the page, you need to surround the 2nd piece of code from AddThis with another Div statement, like the one in bold below:
<div style = 'width:100%; text-align: center; margin-bottom:3em; margin-top:2em;'><!-- Go to www.addthis.com/dashboard to customize your tools -->
<div class="addthis_sharing_toolbox"></div>
</div>
The exact details to use depend on how exactly you want to set up your sharing-bar form AddThis.  I wanted it to be centre-aligned on one of my sites, with some extra white space above and below, so I used these commands:

  • width:100%  -  says to use all of the page-width in deciding where to put the sharing bar  (by detfault, it would just use the width of the sharing bar itself
  • text-align: centre   -   means that he bar will be put in the middle
  • margin-bottom and margin-top   put some extra space above and below the gadget, so it sticks out more-so.


But you may use a different approach, depending on what your blog is trying to achieve.

What your readers see

Visitors using a web-browsers

Will see your AddThis buttons, as you defined them

Readers who subscribe to your blog's RSS feed

Will not see your blog's AddThis sharing buttons, unless they happen to click through from their feed-reader to your blog.

Readers who follow-by-email 

Will not see your standard social sharing buttons at all, unless they visit your site.   (AddThis does have some email newsletter buttons, but these don't automatically go into emails generated from Blogger).


Is it worth it?

For what it's worth, I recently made the change from custom sharing buttons that I'd made myself to classier looking ones from AddThis, and saw quite a jump (50% or more) in the number of social shares, across all my sites.

YMMY, of course.



Related Articles

Installing 3rd party code into Blogger

Using Div statements to control layout

Resigning? wait and save your income

Retiring, resigning or getting fired from your job. The question that you should ask as a blogger is that "Am I Equiped?" because that what affects many bloggers who are looking for successful blogging.

Resigning or retiring from you day job to start a business or become a professional blogger will eventually require you a lot of commitment and hardwork, as a blogger with very much readership I have came across many bloggers who have just quited their day job to start a new life blogging.

Many people quit their jobs and professions with a belief of improving their lives through blog monetization, and most of them have failed to master the beautiful art of blogging. The are many blogs around the world That are doing very successful and you at the other hand some blogs are struggling to monetise their content. To speak the truth there are billions of readers out there looking for blogs that they can follow and probably less then 50 million of readers spend time reading blogs, the challenge that you as a blogger should give to yourself is how possibly can I get these readers into landing to my blog, how can I make them loyal readers.

Blogging is Passion

Blogging is about expressing your passion rather than mere business, some bloggers start blogging with a passion of making people realise a their passions and these has been the winning formula for many blogs. What I mean is that you blog should revive something from a certain amount if readers and once it has been revived then you will see the results.

Target Audience

When it comes to the media we have what we normally call the blogs target audience which has to basucally deal with the type of readers that visit your site, your target audience should always be based on the niche and should also be close to your niche because it would be pointless getting cartoonists to read a tech blog, it would not make sense to them unless they read a cartoon design blog.

Proper Planning

If you planning to quit your day job to start a professional then you should make a plan of income that will keep your blog moving. The best thing that a blogger should have is a product that will be the first income source that a Professional blogger should have and then the other income sources should come last.

The second most importantant fact is the site template because it will verify the success rate of your blog. I have used and designed many blog templates and it happened that the ones with most features were able to top the simple designs which showed us that more advanced designs will keep the readers glued to their screens.

Marketing a Blog

Yes I really believe that blogging can be taken as a career unless you know how to market your blog successfully. Marketing a site does not only depend on the the external factors of a blog but true blog marketing is very much affected by how the internal structure of the site is marketed which will include things like template design, writing style and the level of interest from the blog articles.

Marketing is very crucial such that my friend and coach Sue Anne has always told me to stick on email marketing to make my blog successful, even though many believe that email marketing is "dead", well I disagree with them because marketing is never dead unless it still works.

Monetize your Blog Content!

Well you may start working on a monetization plan once you have been able to master the above mentioned factors and believe me, it will be done completely easily without you having to break yourself trying to make money online.

Blogging is not just an easy online monetization strategy but it is more of a passion, please dont rush to quite your job but make a plan that will improve your financial life by becomming a profession blogger.

The Important three Pillars of SEO

SEO is the heart of the blog success, any blog that is not properly programmed or optimized for better ranking will have big difficulties in meeting it achievements. We as SEO expects we dont really have very much knowledge about how search engines work but in order to get the results we use the errors our sites have in order to predict certain changes that taken place on the internet. These predictions and studies have introduced ways in which can be used to bring better optimization to our sites.

Recommended: Search Engine Optimization Tips for Bloggers

Another part of evolving part of optimization is Social Media Optimization(SMO)  which really contributes a lot to SEO. This type of optimization has been the power behind the growth of Mashable making it a very big site at a very short amount of time. In my upcomming post I will teach you more about this type of optimization.

Search Engine Optimization is probably controlled by some of the most important factors which I believe that every site owner should know in order to position their sites rightly for success. You may happen to rank well and the rank position of your site will fully be affected by whatsoever happens on these factors.

The Best Three Factors of SEO

Technology

This refers very much to the technology used on the website template which will include some things like CSS codes, HTML codes used, Internal linking structure, sitemaps etc.

I always recommend bloggers to use premium blogger templates in order to rank better due to the awesome technology used in the construction of the template, if it happens that you want to remove template credits we can negotiate with the template creator only for $3 USD.

Most site audits usaully focus mostly on the template design and how can it be used to help a site gets indexed easily, making it easier for search engines to be able to get content from your site.

Relevance

The relevance of a blog will have to do a lot with the content structure of the blog which will also include the meta tags, description and meta title to give search engines an idea of your site content. When search engines crawl a site it does not mean that the search engines understand the type of content the site has unless the author uses meta tags.

The relevance ensures that search engines properly interpretes the site content. Today writing a highly optimized blog post is much more important than ever and that is why your content has to be optimized for better indexing.

Authority

Authority is the name of the game, authority sites are made to rank higher compared to non authority sites because these sites are the most trusted. It is quite impossible for a non authority site to rank well above authority sites unless it has a very good relevance.

Normally many sites tend to try and get links from other authority sites with the hope of ranking much better because authority is very much know factor for the improvement of a site. Some blogs have been given penalties for manipulating the search engines by try to buy authority links which is a big internet fraud done by bloggers.

Search Engine Optimization is a must for any site. These three factors will help boost the rank of your site given that you do as told by following the tips given on this blog.