Speed Up Your Site: Optimize Images

Category: Blog    |    5,077 views    |    Add a Comment  |   

It is widely known that the loading time of websites has a major influence on the overall user experience. If on the age of 56K Modems people would be willing to wait even half a minute for a website to load this time span has been drastically reduced lately. The are market researches, in fact, confirming that users will just skip a site altogether if it fails to load within 4 seconds.

The first part of the “Speed Up Your Site” series will cover how to optimize images. Images can create an extra load on the size of your pages, specially if you forget to optimize them. Photoshop and similar image editing software include a feature called “Save for the web”. Always use this feature since it will reduce the image size and load time substantially.

If you do not use an image editing software or if you want something more practical you can use this online image optimizer from Dynamic Drive. It will automatically optimize gif, png and jpeg images, and it will also convert file formats if needed.

  • No Related Post

 

Speed Up Your Site: Reduce the HTTP Requests

Category: Blog    |    5,066 views    |    Add a Comment  |   

When a user is opening your website every object on the page (e.g. images or scripts) will require a round trip to the server. Those HTTP requests will delay the response time of your site, and if you are loading dozens of objects this delay can add up to several seconds.

The first step to reduce the delay from HTTP requests is to reduce the number of objects on your website. Get rid of unnecessary images, headers, styling features and the like. If possible you can also combine 2 or more adjacent images into a single one.

Secondly make sure that your requests for external files or scripts are combined in a single location. For example instead of using three CSS files to create the layout of your page:

<link rel="stylesheet" type="text/css" href="/body.css" />
<link rel="stylesheet" type="text/css" href="/side.css" />
<link rel="stylesheet" type="text/css" href="/footer.css" />

You should use a single one with all the styling information:

<link rel="stylesheet" type="text/css" href="/style.css" />

  • No Related Post

 

6 Ways to Speed Up Your Site

Category: Blog    |    5,133 views    |    Add a Comment  |   

The load time of websites is one of the most important factors affecting its usability; most Internet users will just skip a site altogether if it fails to load within a couple of seconds. Below you will find the summary of the “Speed Up Your Site” series. Those are simple yet effective ways to make sure that your website is running fast. You can click on each point to read the article with comments from the readers.

  1. Optimize Images: always use the “Save for the web” feature included on image editing software. Images represent the heavier load on virtually any website so make sure you are optimizing them. Alternatively you can also turn to an online image optimizer.
  2. Image Formats: apart from optimizing images it is important that you choose the right format. JPEG format is suitable for photographs or true-color images. The GIF format should be used with flat-color images like logos or buttons. PNG works very similar to GIF but it supports more colors.
  3. Optimize Your CSS: most websites are designed with CSS nowadays. Make sure to aggregate and clean your CSS. CleanCSS is an online tool that will merge similar selectors, remove useless properties and remove the whitespace from your code.
  4. Use a Slash on Your Links: when a user opens a link on the form “http://www.domain.com/about” the server will need to figure what kind of file or page is contained on that address. If you include a slash (/) at the end of the link the server will already know that this is a directory page, reducing the load time of the site.
  5. Use the Height and Width Tags: many people forget to add the Height and Width tags on image codes. Those tags will make sure that the browser knows the size of the image before loading it. The result is that it will reserve a spot for the images while loading the rest of the page, speeding up the whole process.
  6. Reduce the HTTP Requests: when opening a web page every object (images, scripts and the line) will require a round trip to the server. This latency can add several seconds to the load time of your site. Make sure to reduce the number of objects and to combine CSS files and scripts together.

  • No Related Post

 

Six Reasons Why You Should Invest the Time to Learn

Category: Blog    |    5,053 views    |    Add a Comment  |   

had been involved with web design for a few years before I ever started blogging. In my opinion, being able to work with the code of a blog is a huge advantage that many bloggers choose not to pursue.

learn html and css

Aside form the design aspect of creating an attractive blog, being able to work with the coding will allow you to make changes and adjustments to your blog any time you want, rather than relying on a professional to do it for you, or rather than just limiting yourself to what’s available with the theme you have chosen.

Most blogs need a bit of customization from time-to-time, and for someone who has no experience with HTML or CSS this be a bit intimidating. However, if you’re working with WordPress you really only need a basic knowledge in order to make many of the customizations that you would like, and you don’t even need to know PHP in most cases (those who aren’t comfortable with PHP just need to be able to recognize it and avoid it when making changes to the HTML).

In my opinion, more bloggers should pursue a basic understanding of HTML and CSS, two coding languages that are relatively easy to learn. Here are just some of the reasons for you to make the time to learn more about HTML and CSS.

1 - Saves you money

If you are paying someone else to make changes to your blog or to design your theme, you could save some money if you learn how to do these things yourself. Even after gaining some knowledge you may still want to pay for a professional theme or for some more advanced work, but many of the common changes made by bloggers can be achieved pretty easily without requiring a lot of skill and experience.

2 - Opens up new opportunities

If you’re relying on others to do the work for you, or for other themes to include the elements that you want, you’ll never be able to take advantage of all of the ideas that you would like to be able to implement at your blog. By being able to work with the code you can put your ideas into practice quickly with little investment.

3 - Upgrading WordPress

If you’ve been using WordPress for a while you have probably had to go through the process of upgrading, or else you have been putting it off out of fear of potential complications. While upgrading shouldn’t cause any trouble, you’ll probably have much more confidence if you are comfortable with the files involved and not so afraid of a minor issue arising. If you’re avoiding upgrading for a long-period of time (a lot of bloggers choose not to upgrade immediately due to stability issues) you are probably taking serious security risks.

4 - Working with plugins

One of the great benefits to using WordPress is the huge number of great plugins that are available. However, not all of them are simple to install and put into action. Some plugins will require you to make some minor changes to one or more of the files, which can be a tall task if you’re not comfortable with the files in the first place. In addition to installing plugins, you may run into bugs from time-to-time with different plugins, and again, knowing a bit about the code can really help to get these problems fixed quickly.

5 - Changes to sidebar

Whether you want to change you entire theme or not, you will most likely want to make some minor changes to your sidebar every now and then. Widgetized themes make some modifications possible without editing the code, but you’re not completely able to do whatever you want with widgets. Sidebar changes can make a big difference to the usability and effectiveness of your blog, so you may want to experiment and test with some different choices. By making some changes in the sidebar files you can quickly and easily make sizable improvements to your blog.

6 - Get creative

Most bloggers get stuck in the rut of just publishing posts. If you’re able and willing to get involved with the code there is really no limit to what you can do with your blog. Just about anything is possible if you’re willing to take the time to learn.

Recommended Resources for Learning:

If you’re already familiar with basic HTML and CSS and you’re interested in learning more about how WordPress works, the codex is filled with useful information. Some articles that you may want to check out include Using WordPress Themes, Theme Development, CSS for WordPress, and a collection of articles on Lessons on Customizing Template Files.

Fortunately, there are plenty of places to learn about HTML and CSS online. One of the most popular tutorial and learning sites is W3 Schools, which has a number of different tutorials. HTML Dog is another useful resource that is very much worth your time. And About.com also has a decent section on HTML and CSS.

If you are more interested in books, the Visual Quickstart Guide: HTML, XHTML and CSS is a good place to start. Two of my favorite books on CSS are CSS Mastery and Bulletproof Web Design, although both assume a basic knowledge of CSS. Blog Design Solutions is another good choice for WordPress users, although parts of the book are dedicated to other blogging platforms.

  • No Related Post

 

How to Find Advertisers for Your Website: The Ultimate Guide

Category: Blog    |    5,212 views    |    Add a Comment  |   

Direct advertising sales is arguably the best method to monetize a website. Finding advertisers for your site and actually closing the deals, however, is not as straight forward. Over the past 6 months I had more than 10 high profile companies sponsoring Daily Blog Tips, and through out this article I will share what I have learned along the way.

The Pros

  • More money: The first advantage of selling your own ads is the fact that you will cut the middlemen out, increasing your revenue potential. Suppose you sell text link ads on your sidebar through a certain company, and the text links sell for $50 monthly. Since you are using the company network to sell the ads, they will eat 50% of the price, and you will end up earning only $25 monthly for each text link. If someone is willing to pay $50 for a text link on your site, though, it means that they are getting $50 of value out of it. Why, then, should you share that with someone else?
  • Independence: Sure, large advertising networks have access to a wider pool of advertisers, and they have more credibility to close the deals. But if you have all the requirements in place (see the section below) and spend some time looking at the right places, I am sure that you will be able to sell your own ads just as efficiently as the larger networks.
  • Flexibility: The third advantage of selling direct advertising is that you will have much more control over where and how the ads will be displayed (i.e., you can avoid intrusive advertising). Google Adsense is nice, but unless you blend it with the content – annoying some of the readers – you will get terribly low click-through rates.
  • Credibility: Finally, having sponsors and direct advertisers on your blog might help your credibility. Even small and poorly crafted blogs can stick some Adsense units here and there. Having established companies that are willing to partnership with your site, on other hand, can signal that your content has quality and that the site is somewhat professional.

The Cons

  • Time consuming: While selling your own ads has many advantages, it is no panacea. The first drawback of this monetization option is the time that it will consume. This time will be spent optimizing your website for the ads, finding potential advertisers, negotiating with them, and handling the administrative matters (e.g., making payments, tracking statistics, delivering reports and so on).
  • Many requirements: Selling direct adverting is not as easy as making money from Google Adsense. As you can see from the section below, you will need to have a popular blog, a professional looking design, special software and the like.
  • Unstable: Unless you close deals for very long periods, which is unlikely, you will find your self looking for new advertisers or optimizing your website to attract new ones every other month. The opposite is true for most advertising networks, where you just need to plug some code and they will do the rest of the work. (If your site or blog is just a hobby, therefore, direct advertising might not be the best option)

What You Need to Have in Place

  • A popular website: Before landing direct advertising deals you will need to have a good amount of traffic on your site. There is no “magical” number here, but a good rule of thumb would be 1000 daily unique visitors. If you are below that mark you should focus on building traffic instead of looking for advertisers. Other factors like Google Pagerank, RSS subscribers and Alexa rank might also help. (Notice that small websites might also be able to sell direct advertising, but usually the time spent on that will not justify the results)
  • A clear focus: You might have the most popular site on the Internet (well, not as extreme as that, but you get the point), but unless your site also has a very clear niche and a defined audience, advertisers will not find it very attractive. This means that you should avoid rambling about 100 different topics on the website. Advertisers want to deliver a message to specific people, and the more specific the better.
  • A professional looking design: If you are planning to monetize your website through sponsors, you probably should invest some money into a professional looking design. Advertisers will be associating their product or service with your website, and not too many of them would be willing to get mixed with an ugly, MySpace looking site.
  • Give visibility to the sponsors: This point is connected to the previous one. Not all templates and themes will be suitable for selling direct advertising. Preferably you want to have an idea of what kind of advertising you will sell (e.g., 468×60 banners, 125×125 banners, text links) and design your website according to those objectives. Advertisers want visibility, so reserve a good spot for them.
  • Adserver software: In order to serve your ads, rotate banners and track statistics you will need to install an Adserver. If you are looking for a simple solution you should try WP-Ads. This Wordpress plugin will serve ads for specific ad zones that you create. The only drawback is that it does not count clicks (only impressions). If you need a more sophisticated solution check OpenAds. You will need to spend some time learning how to use it, but it offers virtually all the features you will ever need.
  • “Advertise Here” page: It is very important to have an “Advertise Here” page. On this page you want to give some details about the website, like audience, traffic and any other factor that might be of the interest of potential advertisers. Secondly, make sure that you have some link to that page on the navigation bar and if possible close to the zone where the ads will be displayed. You can see a perfect example of such layout on Copyblogger.com.
  • Standard letter to approach advertisers: While some advertisers will contact you after reading your “Advertise Here” page, the rest of them will need to be directly approached by you. In that case, it is a good idea to create a standard letter to contact the advertisers. There is no “one size fits all” solution here, but you can follow some general guidelines:1. Introduce yourself and quickly explain what the email is about
    2. Explain why you decided to contact them and what they have to gain
    3. Give details about your site (traffic, subscribers, topic, audience)
    4. Give details about the advertising options (location on the site, max number of advertisers, monthly price)

    That is it, after that information the advertisers should be able to decide if they are interested or not. If they reply, then you will fix the details. Bear in mind that all the info I mentioned should be contained in 2 or 3 paragraphs. If you send an essay to potential advertisers they will just skip it altogether.

  • Accepting payments: You might have everything in place, but if you are not able to cash payments – or more importantly, if advertisers are not able to pay easily – you will end up losing deals. PayPal is the best option here. Notice, however, that a personal account will not suffice. You will need at least a premier account to be able to accept credit cards.

Where to Find the Advertisers

Once you have your direct advertising program established, you will start to receive inquiries from people. On the beginning, however, you will need to hunt advertisers down. Do not get discouraged if get turned down initially, provided you have all the aforementioned requirements, sooner or later you will find someone willing to take a shot on your site.

  • People linking to your site or articles: If a company is willing to link to your articles or to add your website under its “Links” or “Resources” section, it is also probably willing to discuss about advertising on your site. Keep track of those incoming links.
  • People leaving comments/e-mails: The same principle applies to people leaving comments on your blog or sending you e-mails. If among them you see an employee or the owner of a company that could be interested on your website, bingo! Contact him or her and get the conversation going.
  • AdWords advertisers: Through out your search for advertisers you will notice that most of the established companies are not aware of the benefits of online advertising. If a certain company is already spending money on Google AdWords, however, it is very likely that it would also be open to other forms of online advertising. Think about some keywords that are related to your topic and Google them. Check the sponsored links that will appear and contact them. (You can also check the advertisers that appear on the Adsense units of related websites)
  • Other advertising networks: While Google AdWords is by far the largest advertising network on the Internet, there are many others that could be useful. Check the companies that are spending money on AdBrite, Text-Link-Ads, BlogAds, SponsoredReviews and so on.
  • Banner advertisers on similar sites: Check out popular websites on your niche and see what companies are advertising there. Provided you offer them an interesting deal (i.e., a reasonable price for your size), I am pretty sure they will be interested.
  • Create a “Potential Sponsors” bookmark folder: This technique produced outstanding results for me. I have a bookmark folder on my browser called “Potential Sponsors.” Every time I come across a company or website that could be interested in sponsoring my website, I bookmark it. Currently I have over 100 bookmarked sites on that folder, and I have not approached half of them yet.

How Much to Charge

  • You need to provide value: It is all about value. A potential sponsor or advertiser will want to see some returns for the money he will be spending on your site, and this can be seen as visibility (impressions) and leads (clicks and possible sales). Make sure, therefore, that your advertising deals will deliver.
  • The numbers: Remember that there are some pretty cheap advertising options out there (e.g., Google AdWords), and you will need to be competitive. Provided you reserved a good spot for the sponsors (sidebar or header, preferably) you could start charging a $0,5 CPM (cost per 1000 impressions). If your blog is generating 100,000 monthly page views, therefore, a banner spot on your sidebar should cost around $50. Start low and build your way upwards. Popular blogs (e.g., TechCrunch) have a higher CPM, sometimes as high as $10, but you will need a huge credibility to arrive there.
  • Cross-check: You can easily check if you are charging a suitable rate by using Adsense units on the places where you will sell direct advertising. Analyze how much you would gain with Adsense, and adjust your rates accordingly. Secondly, you can also check similar sites that are already selling direct ads.
  • Be flexible regarding the terms: Flexibility is key. First of all make advertising agreements on a month-to-month basis. People don’t like to commit to something they are not completely sure about. If someone proposes you a longer deal, offer a discount in exchange.
  • Offer test periods: Unless you have a very popular website, you will find potential advertisers reluctant to spend real money. If you are confident that the deal will create value for both parties, however, you can use that on your favor. Offer a free test period whenever needed. Some of the times the advertiser will turn you down after it, but other times they will confirm the deal. Either way you have nothing to lose.

  • No Related Post