Archive for affiliate marketing

Video Marketing Ideas

Articles have been a good way to grow organic search engine traffic. But to be highly effective, you must have a large volume of quality articles.  You have to become a recognized authority in your market, or you have to have the right mix of keywords and readability.  It’s becoming more difficult to survive on pure article content alone to find your way to the top of the search rankings. And you have to get your visitors to actually read your content.  This is one reason you should consider using video in conjunction with your article marketing.

Online video is nothing new.  But not everyone knows how to effectively use video. 

  • You can use video to get more traffic to your sites – Post humorous or entertaining videos on YouTube and display your site link.  The viral effect of a good video can launch your site’s traffic.’
  • Create free video content for your website and incorporate some good keyword-rich article content on the same site.  Search engines will index your videos to improve your ranking.
  • Turn your old articles and ebooks into videos and sell them on your site.  You can set up a membership site and provide new videos each month for a monthly subscription fee.  Use a membership script like AMember or DLGuard to protect your video downloads.
  • Use videos to promote your own products or promote others’ products as an affiliate.  Provide some useful bit of content in your intro video, and give the link to your product at the end – or better yet, redirect to the product automatically at the end of the video.
  • Use videos to encourage visitors to sign up to your mailiing list.  Fewer people want to give away their email addresses due to spam, so a creative and useful video can help to persuade them to trust you.
  • Link to your videos and sites with video content from twitter.  But be sure the content you provide is actually useful.  if it’s obvious that you’re simply promoting a product for quick profits, you may just lose some followers.

There are numerous ways to use video content.  And if you’re not comfortable in front of the camera, you can create a PowerPoint presentation or a screen-capture tutorial video with Camtasia.  If you’re the creative type, you may also enjoy creating your own cartoons with a tool like Toon Boom Studio.  With the right approach, you could become the next YouTube celebrity and have all the traffic you can stand.



Diversify to Improve Online Profits

Things change at such a rapid pace online that it’s easy to get caught off guard while your business tanks.  If you’re relying on one stream of income, it’s easy for a change to come along and wipe you out. 

Examples:

  • If you relied on Google AdSense income prior to 2006, you probably saw it all but dry up a couple of years ago due to changes in terms.
  • If you rely on PPC advertising for most of your traffic, a change in Google’s terms can drive your costs beyond your break-even point.  This happened to a lot of site owners in the past year.
  • If you rely on affiliate income from a single vendor, that vendor can change any of their affiliate terms and send you down the tubes in a split second.
  • If you rely on income from the sale of a product or service, a bigger competitor with deeper pockets can enter your space and drive you out of business.

Any number of things can change to leave you scrambling to keep the lights on while you figure out which way to go.  The only surefire way to keep this from happening to you is to have income coming from several channels.  Get your traffic from organic and paid search as well as offline methods.  Set up affiliate programs to let others help you sell your own products, and promote products offered by multiple vendors.  Offer your services to other business owners for a premium and use that as an upsell behind your other product offerings.

You have to prepare before the storm hits so that you’re ready to go if or when it ever happens.  And if it never happens, at least you’ll be enjoying the benefits of multiple streams of income.  This doesn’t mean to jump around between opportunities.  You’ll only lose focus that way and never get anything accomplished.  But once you have one or more income streams running smoothly, you owe it to yourself to work on setting up 2-3 different cash-generating methods.



Customizing a BANS Template

Customizing a BANS template can be quick and simple.  And, if you’re really daring, you can completely overhaul the entire layout.  This requires a bit of knowledge of CSS, and it doesn’t hurt to have a little knowledge of PHP programming, too.

But to just make some basic site changes that help to make your site stand apart from the rest of the crowd, there are a few quick things you can do:

1. Select one of the base templates.  Any template will do.  I usually select one that has the logo section centered on the screen, but you can choose any theme.

2. Create your own logo.  This is important because the basic template includes a blank gray logo with the name of your site in large text.  You want a good graphical logo.  But even if you’re not an artist, you can use the graphics software of your choice to create an image 968 pixels wide by 180 pixels high.  Even the Paint program that comes with Windows will allow you to create a jpeg image that will suffice.  I prefer PhotoShop, but I also use Paint Shop Pro and GIMP.  GIMP is open source, so it’s a good choice if you don’t want to shell out the cash for PhotoShop.

Now comes the fun part.  You get to create the logo.  And if you’re not an artist, you may want to get help with this part.  You want your design to look professional.

Once you have your logo image finished, save your file as logo.jpg.  You can easily upload the new logo to your website through the admin panel.  Click the “Template” button to go into the editor and click the “Upload Logo” link beside your selected template.  This will allow you to locate and upload the logo you saved.

3. Remove the title from the BANS template by clicking the header.php link beside your selected template. Don’t worry if you don’t know what you’re looking at.  You don’t have to for this. 

Just find the words <a href=”<?php print URL_PATH.”/”;?>”> <?php print SITENAME.”";?></a>.

Then delete that whole line.  Don’t worry, it won’t break anything.  That’s just code to print your site name and make it a clickable link.  Be sure to click the “Save” button at the bottom of the page to save your changes.

4. Now you can customize the template even more by changing the style sheet.  To do this, click the styles.css link beside your selected template.  This will open up the style sheet file for editing.  Then you’ll want to open Notepad, select all of the text in the style sheet editor and paste it into the Notepad window.  This will preserve the original style sheet in case you make a change that you’d like to reverse.

Changing Colors

Now look for lines that include the word “color.”  The number value beside the “color: ” tag is a hexadecimal value that indicates the RGB (red-green-blue) value to be used for a particular part of the website. 

You can use your graphics program to choose a color and get the RGB value.  This is the easiest way to get the number to use for a particular color.

The number is actually the combination of three values – one for red, one for green, and one for blue.  So, if you see a value like #000000, this is black.  The first two 0’s are the red value, the next two are the green value, and the final two are the blue value.  They’re all 0, which means red, green, and blue are all turned off.

But the numbers are hexadecimal (base 16), so they don’t range from 0-9 like you’re used to.  They range from 0-16.  And since we don’t have digits to represent value greater than 9, we use the first several letters of the alphabet instead.  So, A = 10, B = 11, C = 12, … F = 16.

Since all 0’s is black, it makes sense that white would be the exact opposite – all values turned on.  And since F = 16, the value for white is #FFFFFF.

If you want red, you can use #FF0000.  Green is #00FF00.  And blue is #0000FF.

You can vary the values of each to get different shades.  And combinations of red, green, and blue will give you just about any color you can imagine. 

Changing Borders and Fonts

You can also change the borders and fonts of any section of the site.  Just find the corresponding tag in the style sheet and change it to the value of your choice.  After making a change, click the “Save” button at the bottom of the page to save your change.  Then click the “View Store” link at the top of the page to see your latest changes.

Advanced Changes

You can make many more advanced design changes by altering the style sheet.  If you learn the rules of CSS, you can learn how to move parts of the design around to completely alter the site layout.  The sky’s the limit when it comes to the ways to customize a BANS template.  I’ve seen many unique designs that in no way resemble the original BANS templates.  Making these types of changes will help your niche store website stand apart from the crowd.

, , ,