Check out the WordPress Dictionary Plugin!

Category: Web


Toggle (enable and disable) a form field with a checkbox: JavaScript 101

Posted on 23rd July, by Anne in Development, JavaScript. 7 Comments

EDIT: First and foremost I am a small business web consultant. If you are a small business owner or know a small business owner, be sure to check out my new blog series called The Small Business Website Guide for Small Business Owners or follow me on Twitter or Facebook for free updates and tips on how to create, shape and grow a small business website.

Today at work I was creating a form. I’m not a big JavaScript buff, but one of my tasks was to use a checkbox to toggle a form field between “enabled” and “disabled”. So, after browsing the web for a solution, I decided it would be simpler to roll up my sleeves and get dirty writing my own function.

Here is what I came up … Read More »


3 Simple Free Fonts You Should Be Using

Posted on 14th July, by Anne in Design, Typography. 6 Comments

Having a good array of fonts to choose from is important. These 3 fonts have met my needs in many situations, and I’m sure they’ll help you too! The best part about them is that they’re free.

Aller

If you’ve been paying attention, you might have noticed that this is the font I use on the home page of my site. It has a few flavors, including a more blocky display version (also featured on my site).

More information
Download

Qlassik

I first found classic for a project that ended up being scrapped, but I am glad it happened because otherwise this gem may have gone unnoticed. Qlassik is a great font to add a little flair to a simple look. It’s clean, and looks great.

More information & Download

Fontin

I actually found this one when I was designing birthday party invitations. … Read More »



Using WordPress to create your page-based website

Posted on 1st July, by Anne in Development. 18 Comments

You’re a web designer, and you want to create a website – and like a lot of sites these days, it will be based around the pages, yet include a blog or news section. Congratulations! I am now going to give you a quick tutorial on making a page-based site using WordPress. This will make editing the pages easy, yet make it look like the blog is a separate installation.

If you have never touched PHP, roll up your sleeves and get ready to get dirty. I will try to make this relatively painless.

What you need!

WordPress

WordPress Plugins (Optional):

All In One SEO Pack
Contact Form 7
NexGen Gallery
PageMash
WP Google Analytics

Programs

You’ll need to BYOP but here are the ones I use:

TextMate OR any text editor
Transmit OR any FTP program

Services

Read More »



Must-have tools for the freelance web designer (PC and Mac)

Posted on 22nd August, by Anne in Design. 3 Comments

Now that I have been at the freelance web-design business for the last several years, I have had some experience with a variety different programs. Some of them are very expensive, others are free. Here I have tried to make it easy for you and compiled a list with links to their respective locations:

Design & Image Editing:

Adobe Photoshop – $649 or $999 for the extended version

Photoshop is the most expensive program you need- but you will want this piece of software. There are a lot of different image editing tool but this is the industry standard. Sometimes you can get a student discount, or even get your company to buy it for you.

Text/Code Editing:

Mac

TextWrangler – Free: This is a great piece of software for writing your code if you don’t want to spend any money.
Read More »


Designing to the Point- 4 Steps to an Effective Website

Posted on 28th March, by Anne in Design. 3 Comments

People – especially people of business – want websites. If you asked them why, most would say that they want to “Attract more clients”, “Generate customers”, or “Show off my business”.

Imagine that you are an architect. Someone asks you to build them an office. You ask, well, what do you want in an office? The equivalent answer to “Attract more clients” is: “I want to be able to put my employees there so they can work.”

As you can see, this is not a helpful answer. How many employees do you have? What kind of resources do they need? What kind of environment should they be provided?

The same goes for a website. The following are some basic steps to designing a better and more focused website that will accomplish the goal of your client.

Step One: Define a specific goal.

Some good example … Read More »


Tutorial: How to display short blog title in WordPress

Posted on 24th December, by Anne in Development. 13 Comments

As was recently pointed out to me by Andy in the comments, this post was quite out of date. I was fairly new to WordPress and had found a hacked way to modify the core of WordPress to return a short version of wp_title(); — but this is a method far from necessary and will always get removed when you update WordPress.

I opted to delete the out-of-date method, so that you only get the stuff that makes sense!

There is a simple script you can use to implement a short blog title without modifying the base WordPress code. Open up your functions.php file within your theme and add the following:

[php]function short_title() {
$title = get_the_title();
$count = strlen($title);
if ($count >= 25) {
$title = substr($title, 0, 25);
$title .= ‘…’;
}
echo $title;
}[/php]

You can now reference short_title(); anywhere within the … Read More »


I found the secret to being listed on Wikipedia

Posted on 26th November, by Anne in Web. No Comments

By the way, I have run across various articles before on DoshDosh.com and I have absolutely loved every single one. A special thanks to DoshDosh for all the great information you have provided me!

So it is DoshDosh that has the credits for this information. Here are some of the coolest points from the article I liked:

First of all, we point out the importance of being listed on Wikipedia. Targeted content, as well as credibility and branding- and hey- we all know that this is the ultimate source of information for students. Welcome .edu links! Great for PageRank.

It goes so far to say that people will trust you more if you are listed on Wikipedia. True? Probably. “Credibility… increases customer and visitor trust”, which may lead to more traffic and a larger audience.

Secondly, it is important to note that … Read More »


Choosing Keywords and Blog topics

Posted on 16th October, by Anne in Blogging. 1 Comment

A friend gave me a tip the other day- when you are creating a website or writing a blog you should know what people are actually looking for.

My question: How do you know what people are looking for?

For bloggers:

Out of ideas? Want to write about the latest buzz? Check out google.com/trends and see for yourself just what’s hot! A sweet graphic shows you whether the search rates are still going up or if people have stopped searching for a term so much.

For website developers/designers:

So you’re working for a client who wants an SEO website for their main key terms. You don’t want to spam the whole site with the same exact phrases and you want to phrases you choose to use to be solid terms. How do you find out? Check out Read More »


CSS Tutorial: How to create CSS image rollovers with a single background image

Posted on 13th June, by Anne in Design. 2 Comments

Everybody is looking for lightweight code with a maximum effect. JavaScript rollovers just don’t cut it anymore- they take too long to load, they’re kinky the first time you rollover, etc. etc. and CSS using multiple images can be kinky if you aren’t using an image pre-load. The solution? CSS image rollovers using only a single background image.

If you don’t have a solid understanding of using lists for navigation, then you may want to review that concept before tackling the single-background-image rollover.

Download the example to follow along.

The concept

You have, for instance, a navigation bar (vertical or horizontal, it doesn’t matter). Very simple. There are only four buttons but you can obviously change and edit this concept to fit your own site.

How is it done?

Well this is what the HTML in the example … Read More »


CSS Tutorial: How to use lists for navigation

Posted on 8th June, by Anne in Design. No Comments

One of the most revolutionizing things I ever learned about building websites with HTML and CSS was the concept of using lists for my navigation. I was flabbergasted! Using lists for navigation? Why, that would look horrible! But then my eyes were opened to the real power that you have to control the way your navigation looks and behaves, as well as the very SEO friendly navigation the list will provide.

The HTML

If you are following along with me in your own document, you will need to make a list, much like the one below (depending on your file structure):

<ul id=”nav”>
<li><a href=”index.html” >Home</a></li>
<li><a href=”about.html” >About</a></li>
<li><a href=”contact.html” >Contact</a></li>
</ul>

And that is your basic list for navigation. It looks kind of ugly in the browser right now, but that’s alright because we’re going to fix that in a minute.

Now there are two ways to … Read More »