1955 Design | Websites that Look Good, Work Properly and Search Engines Love
Goodbye to My Old Friend Internet Explorer 6.0

Facebook icon
Follow 1955Design on Twitter
Blog icon
RSS icon
 

Accessibility (Archives)

Goodbye to My Old Friend Internet Explorer 6.0

by David Zemens · October 22, 2009 · Accessibility , Web Stuff , Website Design

I am a big fan of the Seinfeld television show. To me, the show epitomizes middle class America comedy in a way no other sitcom has ever managed to do.

In one particular episode, for some reason that I can’t recall, Kramer decides he’s at the time in his life to go without underwear. In a particularly funny scene with Jerry and Elaine, Kramer announces to the world that “I’m out there Jerry and I’m loving every minute of it!”. Free at last, free at last.

The Least Valid Website on the Internet

by David Zemens · June 9, 2008 · Accessibility , Website Design

As most of you know, I strive to develop websites that conform to currently accepted web design standards. I write my code to be valid both via the CSS file and the XHTML markup.

Although it takes a bit more time to design a website to conform to these standards, it always seemed like the right way to design a website. It also feels good when your product is pronounced to be Valid by the various validation tools.

I stumbled upon a website today that appears to me to be the least valid website I have ever seen. Bar none. As of today, there are 2017 validation errors when the XHTML is checked. Wow. That’s a lot of errors.

Can you find a website with more errors than this one has? That’s the challenge for today!

[eof]

P.S.
Just to balance things out, the University of California Spanish & Portugese Department is one of the most valid websites I have ever seen. The good folks over at Accessites.org highlighted the UC Spanish & Department website over a year ago.

How’s that for contrast?

WordPress Category Navigation

by David Zemens · September 29, 2007 · Accessibility , Most Popular , WordPress

One of the basic features of most websites is some type of navigation indicator to identify what page you are currently browsing. Although this can take the form of a fairly complicated breadcrumb indicator, the most frequent implementation of this feature is simply to draw attention to the navigation link by highlighting it differently with your CSS file.

Don’t you think it’s time to extend this same feature to the WordPress category navigation links? Read on to find out how!

The Typical WordPress Theme Navigation Structure

Most websites that use WordPress for the backend have a sidebar or other area of the site which displays a series of navigation links for each of the blog categories. This link list is displayed by use of the wp_list_categories() function. When the visitor chooses one of these links, they are taken to an archive of blog posts that have been tagged under a particular category. Most blogs have quite a few category assignments, and as a rule these category links make up a significant portion of the overall navigation.

An example of this can be seen right here at 1955 Design. Follow this link to articles written in my portfolio category. Notice that in the right sidebar, under the Categories tab, you will see that the title for this category is now colored a shade of orange and is italicized as well. Neat feature, at least to me.

How to Highlight the Category Navigation Link

Wouldn’t it be nice if the rather lengthy list of category navigation links could be highlighted so that the visitor can see that they are visting a category archive and are not on the main blog index or a static blog Page? It can be done!. WordPress adds the CSS class named current-cat to the list markup which surrounds the active category link. By controlling the styling of that class in your CSS file, it is possible to visually indicate to your site visitor that they are currently browsing a category archive.

Here’s my CSS:

#sidebar ul.li_smaller li.current-cat a {
	padding:0px 5px 0px 0;
	font-variant:normal;
	background-image:url(i/nav_current.jpg);
	background-repeat:no-repeat;
	background-position:left center;
	background-color:#5B5C9D;
}

The image shown at the top of this post indicates how 1955 Design implements this feature. As you can see, the current category link takes on a different background color to serve as an indicator to the visitor. If you actually scroll down the left sidebar and choose the Accessiblity category link, you will see how this indicator actually changes that link to the highlighted color when you are viewing the Accessiblity category archive list.

Is this the Eighth Wonder of the World?

Hardly. It’s just one in a series of WordPress enhancements that I have learned of recently. I think it’s a neat feature that is very often overlooked by theme developers. In fact, of the thousands of WordPress blogs that I have visited, I have only seen this feature implemented one time – by Mike Cherim over at GreenMethods.com. I discovered this WordPress feature while studying Mike’s new webiste. As usual, Mike is on the cutting edge of WordPress design. Thanks Mike!

[eof]

Older Articles »