Graphic/Web Design Blog


A great resource for web and graphic design for beginner and advanced designers. Learn about Adobe Software, XHTML, CSS and PHP coding, Design Jargon and other resources to help you.

Archive for June, 2008

Sunday’s Noteworthy Blogs Post

Sunday, June 1st, 2008

5 Noteworthy blog posts you may not have seen:

  1. How To Find A Graphic or Web Design Intern
  2. Best of Web - May
  3. Writing Web Content for Search Engines
  4. In Search of Better Search
  5. 155 Wordpress Resources, Tutorials, Plugins, Themes, AJAX, Podcasting…WP Monster List

Rate this Press Release


40+ Extremely Beautiful Icon Sets Hand-picked from deviantART

Sunday, June 1st, 2008

Noupe.com has featured over 40+ icon sets on their blog. From desktop icons to web site icons, all of these came from deviantART. Also, if you scroll through the comments you can find links to many other web sites with icon sets.

Rate this Press Release


Speak Like a Designer: Bleed

Sunday, June 1st, 2008

Bleed refers to an image or a background color extending off the page. This will be trimmed or cut away and will leave an image flowing off the page. Printing with bleed usually incurs a higher cost, because of the extra step to trim it. Printers will let you know how much bleed to use when setting up your design.

Rate this Press Release


Redirecting Pages using .htaccess

Sunday, June 1st, 2008

This quick post explains how to redirect users to different pages on your website and in theory, not harm your Google Page Rank. Basically using the 301 error code tells a search engine or browser that the file was once there, and it has permanently moved.

Error 3o1: Permanently Moved should not be confused with the more frequently seen Error 404: Page Not Found. This error code is generally used to indicate that content does not exist anymore. Error 404’s will eventually filter out of search engines over time.

Note: It is assumed you have a general understanding of how to make/edit a .htaccess file.

To relocate one page use this snippet:

Redirect 301 /oldpage.php http://www.yoursite.com/newpage.php

You can add as many of these lines to your .htaccess file as needed. However, if you would rather just move all 301 errors to your main page (or any page for that matter), use this snippet of code:

Redirect 301 / http://www.yoursite.com

There are many other ways to handle a redirect, but this way I find is the easiest and requires the least amount of coding.

Rate this Press Release