DMNews.com has relaunched with a new design and a new back-end, both done by us at Netconcepts. On their blog, DM News’ founder and publisher Adrian Courtenay talks about the relaunch and gives us such glowing praise that I feel myself blushing!
A few new features worth noting:
- The entire archives have been opened up. No more passwords required!
- Articles support both comments and trackbacks.
- Deep links to old articles have been maintained through 301 redirects.
- The site now offers RSS feeds. Not just one main RSS feed, but every category has an RSS feed.
Filed under: Blogs, RSS-Marketing, SEO, Web-Development |
Email to a Friend
|
No Comments »
CSS (Cascading Style Sheets) offers many more benefits beyond that of streamlined web pages with table-less layouts and precise positioning (no more transparent 1-pixel spacer GIFs!), mentioned in my previous post. Indeed, that’s just scratching the surface of CSS.
Here are some more clever things you can do with CSS to get your website really humming:
- Reorder your content to sit above your top and left navigation in the HTML. That will boost the keyword prominence on your pages, which is good for SEO. Then use CSS to get the page to still display as you want. CSS Zen Garden is a great example of this in action… for example, notice how the HTML doesn’t change between this layout with left-side nav and this one with right-side nav; it’s only the CSS that’s changing.
- If you must use graphical navigation or headings instead of text-based, then use the CSS “image replacement” technique to substitute in a text link or heading tag, respectively, when the CSS is not loaded (as is the case when the search engine spiders come to visit). For example, northland.edu uses this technique well. Currently, this is much more effective for SEO than Alt attributes.
Many of the image replacement techniques physically move the text off the screen (text-indent: -9999em; left:-9999em;display:none, etc). This isn’t desirable as search engines are starting to examine external CSS files more closely to look for spam. There are a few image replacement techniques that don’t do this type of hiding and are still accessible, namely The Leahy/Langridge Method, The Gilder/Levin Method and The “Shea Enhancement”. Each of these methods have their pluses and minuses, which the Mezzoblue article outlines quite well. (Thanks to our CSS guru Darren for this last bit of advice.)
- Learn to code in “CSS shorthand.” With shorthand, hex codes for colors, margins, box dimensions and borders can all be abbreviated, for instance. More about this here. The efficiency of CSS shorthand translates into not only a speedier download for your customers, but also compact and tidy code that’s easier to maintain.
- Make code that “degrades gracefully” (or, as they prefer to say now in geek circles, “enhances progressively”). Creating a separate “low-bandwidth version” or “printer friendly version” or “mobile version” of your site will sound ludicrous in years to come (heck, I think it sounds ludicrous NOW!), because CSS makes such a thing unnecessary. Check out how gracefully gotomedia.com degrades on a cell phone or PDA, for instance.
- Correct for browser incompatibility snafus with browser-specific CSS. Does something look awry in your page layout when loading your site with the Safari browser, for instance? Internet Explorer doesn’t always play nice with the other browsers. Until the days where all the browsers follow all the same standards to the letter, browser-specific stylesheets are a useful crutch.
- Separate the presentation layer from the content layer as much as possible and move it into an external stylesheet (in other words, a separate .CSS file). That way it gets cached by the web browser and doesn’t have to reload with each new page.
- Plan for site-wide changes. Things change — colors, sidebars, ads, copyright dates, etc. Utilize CSS files and/or server-side includes to make future site-wide updates as painless as possible.
- Make use of the cascading nature of CSS. Most of the styles you define will be used site-wide. Some will only be for one particular page. Then there will be occasions where you’ll want to “cascade” styles, and have certain sections of your site adopt a particular look/layout/theme that overrides or branches off from the site-wide styles. Clever use of cascading styles can lead to very efficient and elegant code.
Warning! Geek speek ahead:
Be careful of overriding previously declared statements. And also be aware that specificity is important in the cascade. Declare all your tag styles first then declare your id and class selectors down the doc. That way the cascade works and can be overwritten with new selectors. (Thanks again to our CSS guru Darren for this last bit of advice.)
CSS coders: the Web Developer Firefox extension is an awesome tool for coding, debugging, and tweaking style sheets. You can display the stylesheet and the rendered page simultaneously side-by-side and then interactively edit the CSS, immediately viewing the effect of the change on the rendered page. And it makes identifying errors (be they validation, CSS, or JavaScript) a piece-of-cake. Did I mention the plugin is free?
Filed under: Blogs, SEO, Web-Development |
Email to a Friend
|
No Comments »
I found the eyetracking study from Enquiro and Did-It unveiled last week at Search Engine Strategies and covered in Search Day fascinating. The aggregate heat map shown on the right (larger version here) shows where participants focused their eyes (and their attention) the most. As you can see, the first listing not only drew the most attention; the full listing was read more fully from left to right, than other listings.
Visibility drops the further down the search results you go, and clickthroughs drop even more markedly (as you can see from the graphs below). This got me thinking about Zipf’s Law. Zipf’s Law is applicable to Top Ten Lists, as Seth Godin explains, perhaps Zipf’s Law might be applicable to the SERPs (search engine results pages) too? (In general terms, Zipf’s Law states that being #1 is much, much better than being #2 which is much, much better than being #3 and so on. So dominating a Top 10 list is critical.) Although these graphs don’t follow Zipf’s Law exactly, nonetheless given this data I’d consider it foolish to be complacent if your search listings are not at the very top of the SERPs.
What is it about searchers that makes them so blind to relevant results further down the page? Is this due to the “implied endorsement” effect, where searchers tend to simply trust Google to point them to the right thing? Or is it just the way humans are wired, to make snap decisions, as Malcolm Gladwell insightfully explains in his new book, Blink? According to the study, 72% of searchers click on the first link of interest, whereas 25.5% read all listings first, then decide. My guess is that both effects (”implied endorsement” and “rapid cognition”) play a role in searcher behavior.
A few other important take-aways from the study:
- 6/7 (85%) of searchers click on natural (”organic”) results (not 60/40 as the search engines and PPC (pay-per-click) vendors would have you believe).
- The top 4 sponsored slots are equivalent in views to being ranked at #7 - #10 natural.
- (corollary to #2): This means if you need to make a business case for natural search, then (assuming you can attain at least #3 rank in natural for the same keywords you bid on) natural search could be worth two to three times your PPC results.
In all, a superb research study. Great job Did-It, Enquiro, and EyeTools!


Filed under: Blogs, Usability, Web-Development |
Email to a Friend
|
No Comments »