How to drive traffic to your site using Google AdWords
November 19, 2007
Google AdWords makes it possible to deposit five bucks, write a couple of ads, and instantly get access to over 100 million people - in less than 10 minutes.
It’s hot. In fact it may be the first and best thing you do to get traffic to your site.
But it’s not always as easy as I just made it sound -AdWords has some nuances, and most people have a
rough time at first.
Well, Perry Marshall has written a very helpful e-course called “5 days to success with Google AdWords” and there’s no charge for it. You can find out about it here:
Perry Marshall’s Google Adwords e-course
How to Widgetize Your WordPress Footer
November 16, 2007
Widgets are great for people using WordPress who don’t want the hassle of hard-coding their sidebar. Many themes have a widgetized sidebar or even two. But what about widgetizing your WordPress footer? I looked for a tutorial, but couldn’t find one, so I’m presenting my exploration in widgetizing my WordPress footer for future posterity.
First, open the function.php file found in your template folder. Search for the sidebar function. It should look like this:
if ( function_exists(’register_sidebar’) )
register_sidebar();
If it’s not there, add it. If you want to have multiple widget sidebars, then you need to alter the code a little bit. For example, if you wanted a widgetized sidebar and a widgetized footer, we would add this code instead:
if ( function_exists(’register_sidebars’) )
register_sidebars(2);
You could change the number 2 to reflect the number of different widgetized sidebars you want to use.
Calling the Function
To call this function when we have just one dynamic sidebar, we would use the following code in our sidebar.php file or footer.php file, depending on where you want the sidebar:
<?php if ( !function_exists(’dynamic_sidebar’) || !dynamic_sidebar() ) : ?>
However, if we have multiple sidebars, we’ll use this code for the first sidebar:
<?php if ( function_exists(’dynamic_sidebar’) && dynamic_sidebar(1) ) : else : ?>
And this code for the second sidebar, to be placed in the footer.php file if you want a widgetized footer:
<?php if ( function_exists(’dynamic_sidebar’) && dynamic_sidebar(2) ) : else : ?>
To end the dynamic sidebar, add this code:
<?php endif; ?>
Seven Qualities to Look for in a Good Web Designer
November 14, 2007
Choosing a web designer is probably the hardest decision to make. Especially if you don’t understand anything about web design or how the Internet works. You can make a lot of mistakes and waste a lot of money. So how do you know what to look for when you seeking a quality web designer? Here are a few things I would look at when evaluating a web designer.
1. Portfolio - Viewing a web designers portfolio will give you a good idea of what kind of work they’ve done in the past and what they may be capable of doing for you. Important questions to consider are: Do you like what you see? Has the web designer done work similar to what you want done? Do you feel confident the designer can design your site in a style and look you’re after? Are the websites easy and intuitive to navigate?
2. Cascading Style Sheets (CSS)- It’s what separates a good web designer from a mediocre one, so you’ll want to make sure you’re web designer is using CSS and not tables for their layouts. Why? Because CSS allows you to make site-wide changes with a single change the the style sheet. This is important so you don’t have to manually update each and every one of your thousand page website.
3. Content Management Systems (CMS)- CMS is all the rage. Will your web designer be using one for your site? By using a content management system, your web designer gives you control over your static content (and sometimes dynamic content too). This means you can edit the content when you want to through an administrative back-end. This can be important because without a CMS, you’re forced to request changes to your website through your web designer. That’s more money for them, and a longer wait time for website changes for you. Not a good deal if you ask me…
4. Functionality - What kind of functionality do you require? The Internet is all about dynamic content these days–sites that change and update constantly. Static pages still serve a purpose, but you’ll want to make sure you’re web designer can create the kind of functionality you require–things like dynamic content pages, rss feeds, commenting, rating systems, and memberships. Not only is it necessary that your web designer be capable of doing these types of things for your site, but they should be able to tell you if and why you want to do these things. A good web designer will be able to guide you through the process of defining the types of functionality you want, while keeping the site practical and realistic for your target audience.
5. Programming Language- One question that may or may not be important to you is, “What type of programming languages will you be building my site in?” If you’re in an area where this is important, then you better take a look at the different languages and make sure to utilize one that fits with your target audience. A developer may choose to use PHP/MySQL, Ruby on Rails, or ASP/.NET just to name a few. But there are also additional types of coding, like Javascript and AJAX, that can be used to create certain functionality for your website, if a web designer knows how to use them. This requires some research, but a good web designer will be able to talk to you intelligently about their choice in programming languages and why it’s a good match for your project.
6. Organization- Is your web designer well organized? Do they return your calls promptly? Do they meet deadlines? If it takes your web designer 3 days to get back to your initial request for information, and 7 days to get you a quote, you may want to reconsider that web designer if promptness is important to you. The best web designers I’ve worked with get back to me within 24 hours, and if they can’t, they let me know. The worst web designers I’ve interviewed take their time calling me back and often cancel or try to reschedule our first meeting minutes before it’s scheduled to take place. Whatever you do, don’t write off these types of behaviors as one-time things. Usually they’re indicative of a personality type that you’re going to have to deal with for the duration of your project.
7. Personality- After you’ve reviewed all the technical qualifications, personality plays a role. If you’re going to be working with a web designer for a month, or two months, or on an ongoing basis, you want to get along with them. If certain personality traits or things that are said unsettle you, or give you pause, listen to your intuition.
Rounded Corners for Images
November 9, 2007
Do you want to get rounded corners on an image, but don’t know how to do it? While looking up a tutorial on Photoshop, I found a site that will round the corners on your image for free. ezRoundedCorners
If you want to do it in CSS, try Liquid Corners or Rounded Corners.
Using Simple Tags in WordPress
November 7, 2007
I love Simple Tags! I previously used Ultimate Tag Warrior for my tags and I loved it. But the new word on the street is the existing tag function in Wordpress 2.3 and the use of Simple Tags Plugin by Amaury Balmer to extend that native tag funcionality. The plugin includes a ton of options including:
- auto suggestion of tags
- tags management (rename, delete, amalgamate, search and add tags, edit tags ID)
- Related content since common tags
- Possibility to add related posts inside RSS
- Dynamic Tag Clouds with colors with Widgets
And these are just a few! If you haven’t already, upgrade to the latest version of WordPress and download the Simple Tags plugin now.






Recent Comments