

Published 22 Aug 2006
Just a quick announcement that I recently launched a redesign of the Humboldt State University main site. This pretty much explains most of my silence for the past month or two. The new site focuses on recruiting, which is a major goal of the university at this point, and has been in development for over 6 months.
Highlights include:
I will be writing more on some of the specifics in the near future, but for now, enjoy.
This is the section that contains all of my professional articles — serious, no-nonsense stuff that you may need caffeine to get through.
Yes, I have been neglecting this site for a while.
This time I have a valid excuse, though — major life changes are afoot. Most of you that are …More »
I am leaving bright and early tomorrow morning (like at 4am, sheesh) to attend my 4th SXSW. I’m really looking forward to getting out of Dodge for a while, …More »
Commentary
Morgan writes
Aug 23 at 05:24 AM #
I really like it. It’s like mint for my eyeballs. :)
(I gave it a mini-review on my blog.)
Elaine writes
Aug 23 at 10:27 AM #
Damn pretty. And I still think the customizable quick links is incredibly clever. :)
Scott Jungling writes
Aug 23 at 10:28 AM #
Simply brilliant. Excellent quality photographs and very cool quick links.
Jon-Michael writes
Aug 24 at 07:31 PM #
Wow! That’s the nicest university site I’ve seen; it’s actually easy to find and use sections.
Care to contact my school and fix up the POS site? They finally converted it from all flash to Dreamweaver XHTML, but it’s has the most retarded navigation (ex: 6 links lead to the same page!).
Anyways, great job on the site. It should inspire other universities!
Pat writes
Aug 25 at 06:34 AM #
Got any in-depth articles on how you used ExpressionEngine to create the site in the pipeline. I’d love to hear about the backend details.
Andrea writes
Aug 25 at 12:11 PM #
Thanks all!
Pat: yes, that is one of the first articles I want to write. I’m really impressed with ExpressionEngine these days. :)
James John Malcolm (AkaXakA) writes
Sep 3 at 02:50 AM #
I, for one, would love to hear how you got on with ExpressionEngine!
Chip writes
Sep 8 at 04:22 AM #
Congrats on the new site – looks great! We’re in the first stages of launching here, but still a long road ahead!
Stephanie Geyer writes
Oct 31 at 11:03 PM #
<span class="caps">LOVE</span> what you did with the home page. Congrats!
Andrea writes
Nov 1 at 01:06 AM #
Thanks Stephanie! The review of the old site from your firm was very helpful when putting this one together.
Lucas Stark writes
Jan 11 at 09:15 PM #
Your function:
function menuFix() {
var sfEls = document.getElementById(“nav”).getElementsByTagName(“LI”);
for (var i=0; i<sfEls.length; i++) {
sfEls.onmouseover=function() {
this.className+=(this.className.length>0? “ “: “”) + “sfhover”;
}
// event added to keep menu items from disappearing
sfEls.onMouseDown=function() {
this.className+=(this.className.length>0? “ “: “”) + “sfhover”;
}
// event added to keep menu items from disappearing
sfEls.onMouseUp=function() {
this.className+=(this.className.length>0? “ “: “”) + “sfhover”;
}
sfEls.onmouseout=function() {
this.className=this.className.replace(new RegExp(”( ?|^)sfhoverb”), “”);
}
}
}
Is throwing a script error in IE 7.
Very nice site though
-----