NaomiWrites.com updated with new layout and Gallery

NaomiWrites.com screenshot

Just finished updating NaomiWrites.com with a new layout and the addition of a picture gallery. Using Open Source software called Gallery to handle image management. It is still pretty tricky to incorporate Gallery into a site without a lot of tweaking of header and footer files, but it is a nice and powerful system. You can view a slideshow, automatically order prints of your images and create as many albums as you want. Also it uses ImageMagick to resize images so you can upload a large image and it will create a thumbnail for you. Very nice…

We’re also using WordPress for the blogging software.

Visit the site at www.NaomiWrites.com.

December 24th, 2003

First post using i330

posting using graffiti on my new i330 over at Hal’s place.

December 12th, 2003

Samsung i330 Arrived!

Today I received my new Samsung i330 Palm / mobile phone. I purchased mine from Ebay and so far I’m totally happy with the purchase. Having a Palm again is really nice. It should make things a lot easier on all fronts.

Also, it is possible to skin the phone — check out http://i330.nopdesign.com to see how it works. Very cool.

i330 FAQ- http://pdaphonehome.com/forums/portal.php?device=i330

i330 Forums – http://pdaphonehome.com/forums/forumdisplay.php?s=&forumid=114

December 10th, 2003

Google Dance Search Ranking Tool

Found this nice tool for checking all 10 Google datacenter search engine results at once (each updates on a different schedule).

http://googledance.seochat.com/

November 22nd, 2003

SEO – Updated Keywords for NoraLarimer.com

Today we finished updating NoraLarimer.com with updated keywords to help improve search engine placement.

Nora Larimer Painting

Nora is a longtime client, and when the site was originally built we placed an emphasis on clean design and letting her paintings stand on their own. Since then, we’ve added many paintings to the site, her recent work using watercolor tiles and implemented a Paypal shopping cart throughout the site.

Nora wanted to improve her search engine listings — a lot of the new content we’ve added to the site, like giclee prints weren’t part of her original content.

Nora’s current Google results include #1 for her name – Nora Larimer and #7 for watercolorist.

Our current efforts are focused on improving her results for terms including giclee, watercolor tile, watercolor originals and others. These are fairly competitive search terms, so we are not necessarily expecting #1 positions for each. But we should see improvements for each term now that we’ve added them to the site.

Do you come up where you want to in search engines like Google?
Post your site in the comments and we’ll take a look.

November 20th, 2003

Blazing Products, Inc. New Website Launched

The new site for Blazing Products, Inc. is launched.

Formerly known as Tom King Harmony Products, Inc. (TKHP) we helped craft a new identity system for the company.

Blazing Products logo

After extensive consultation, TKHP decided to change their company name, website, and packaging to reflect their core value – helping people in the irrigation and landscape lighting industries install faster. Thus was Blazing Products, Inc. born.

The new site is now live and includes their new logo, layout and content.

Evolution of Tom King Harmony Products - Blazing Products, Inc.

http://www.blazingproducts.com

November 14th, 2003

How to: Add an "Edit" link to each post in WordPress

This hack adds an “Edit” link next to each entry if you’ve logged in and the cookie still exists on your computer. This is not the ultimate security, since the real security functions are still provided by b2verifauth.php, but it does hide the link from users who are not logged in.

To add this to your WordPress site:

1. Add the following code to your b2template.functions.php in the Post tags section:


/* Hack by Gabriel Serafini to add an "Edit" tag by */
/* each post if you're logged in */
function edit_this(){
    global $id, $HTTP_COOKIE_VARS;
    if (!empty($HTTP_COOKIE_VARS["wordpressuser"])) {
        $output = '- <a href="/blog/wp-admin/wp-post.php?action=edit&post='.$id.'" title="Edit this post">Edit</a>';
        echo $output;
    }
}

2. Add the following code to your blog index page (usually index.php) where you want your edit tag to live:


<?php edit_this() ?>

I’ve placed mine next to the …posted in Category by Gabriel at … links at the bottom of each post.

The final result is a nice link that lets you instantly edit any post on your site, which is very nice if you tend to like to edit your posts on a regular basis.

October 30th, 2003

Upgraded to WordPress .73 from CVS

Just upgraded to WordPress version .73 mainly because of the search-engine friendlier urls it now has built in.

Instead of the archived post links being in the form /blog/posts/18 they are now written as /blog/archives/2003/10/24/google-adwords-article.

Thanks for the great work, Matt! 🙂

I need to work with the calendar again to get it to follow the same structure.

Still need to re-do the archive links from within the calendar. Might try to submit to CVS. Possibly.

October 30th, 2003

How to: Add "marching ants" Photoshop selection style to your links

Something I’ve thought could be interesting for a while now is a way of using CSS to create a link style that mimics a Photoshop selection (commonly referred to as marching ants).

I finally created the graphics and figured out the code. It adds just under 13k to the size of your pages (on the first load). After that it is cached and should not add any additional load on your pages.

Here is a sample link: selection_back-link.gif

Before you click on the link, the text should have a moving border similar to a Photoshop selection and a yellow background. After you click the link, the text should lose the yellow background and you should see the dashed border stopped and greyed out. The hover state should be a slightly darker orange color.

Want to use this effect on your site?

1. Add the following style information to your style sheet:


/* Style adding "marching ants" selection effect to links */
/* CSS and graphics by Serafini Studios - https://www.serafinistudios.com/ */
a.ants {background:#ffffcc url(/images/selection_back-link.gif) top left no-repeat;text-decoration:none;color:#000000;
padding-top:2px;padding-left:4px;padding-right:0px;padding-bottom:0px;}
a.ants span {background:#ffffcc url(/images/selection_back-link.gif) bottom right no-repeat;
padding-top:0px;padding-left:0px;padding-right:4px;padding-bottom:2px;}
a.ants:visited {background:#ffffff url(/images/selection_back-visited.gif) top left no-repeat;text-decoration:none;color:#000000;}
a.ants:visited span {background:#ffffff url(/images/selection_back-visited.gif) bottom right no-repeat;}
a.ants:hover {background:#ffcc66 url(/images/selection_back-link.gif) top left no-repeat;text-decoration:none;color:#000000;}
a.ants:hover span {background:#ffcc66 url(/images/selection_back-link.gif) bottom right
no-repeat;}
a.ants:active {background:#ffcccc url(/images/selection_back-link.gif) top left no-repeat;text-decoration:none;color:#000000;}
a.ants:active span {background:#ffcccc url(/images/selection_back-link.gif) bottom right
no-repeat;}

2. Upload these 2 graphics to your /images/ directory:

3. To make the ants march around your link, use the following code:

<a href="http://yourlinkhere/" class="ants" title="Link title here"><span>Linked text</span></a>

Explanation:
There are two inline elements at play here – the <a> and the <span> tags. By applying a background:url(...) style to each and using the positioning elements (top left and bottom right) we are able to position the top left of the animated marching ants graphic behind the <a> tag and the bottom right of the graphic in the background of the <span> tag.

Known Limitations:
If you are linking more than one line of text, the effect gets screwed up. Also, different browsers will render this in slightly different ways.

Credits:
If you use this code, I ask that you add a comment below and indicate the URL where you are using the code. Also, if you have any suggestions for improving this, let me know, or if you find it breaks horribly in any given browser add a comment. Thanks.

October 29th, 2003

2004 Principia College Reunion Artwork Completed

Reunion logo

We finished the artwork for the 2004 Principia College Reunion project the other day. The object was to go for a kind of retro celebration feel – a litttle circus, a little carnival, basically a fun party concept. The curve of the drapes is also meant to evoke the St. Louis Arch.

Oval version of logo

Oval version of the logo. Adds a starburst to the background.

Tent graphic

This tent graphic is to be used as a fun part of the identity for the Reunion Weekend.

Blue and Gold penants

Blue and Gold penants (school colors)

All artwork was created in Illustrator. All images © 2003 Serafini Studios.

October 26th, 2003