Advanced CSS Design Resources - last-child.com http://www.last-child.com CSS Toys for Professional Web Developers Mon, 30 Jun 2008 09:34:35 +0000 http://wordpress.org/?v=2.5.1 en Adding style to your rel attributes with CSS http://www.last-child.com/rel-attribute-display/ http://www.last-child.com/rel-attribute-display/#comments Wed, 25 Jun 2008 15:03:00 +0000 Ted http://www.last-child.com/?p=153 View the finished example: Adding style to your rel link.

There’s a little attribute in HTML links that is starting to get a bit of attention lately. The “rel” attribute is a sparsely defined attribute that applies some meta information about a link’s relationship to other documents. Unfortunately, this information is usually hidden from your users. Let’s take a light-hearted stab at turning it into a visual element.

Rel attribute usage

While the W3C originally considered the rel attribute to describe the relationship of pages to each other, i.e. next, previous, directory, and start. The attribute has been adopted by the Microformat community for its inherit usefulness. The rel attribute is now used for tags, to define your relationship to someone, and even to tell search engines not to bother following a link.

The opportunities to use the rel attribute are seemingly endless. There are more proposals to define people you don’t like and links for voting.

But all of this flexibility comes at a small price. To remain valid, you need to tell the browser what these new rel values may actually mean. This is handled by linking to appropriate profiles. Just simply insert the profiles into your head tag. Multiple profiles may throw a validation error, but it’s ok. You don’t need to do this for the standard rel values.

  1. <head profile=“http://www.ietf.org/rfc/rfc2731.txt http://www.w3.org/2006/03/hcard”>

We will be using the CSS3 attribute selector functionality to look at the value of the rel attribute and apply some style accordingly. First we’ll add some padding and a background image to any link that has a rel attribute. We’ll then use background positioning to display an icon that is appropriate for the link. It’s a fairly simple hack.

For more information on using attribute selectors, check out my previous posts:

Sample HTML Code

  1. <li><a href=“http://microformats.org/wiki/rel-nofollow” rel=“no-follow”>This link is ignored by search engines</a> (rel="no-follow")</li>
  2. <li><a href=“http://microformats.org/wiki/rel-tag” rel=“tag”>A sample tag </a> (rel="tag")</li>

Sample CSS

  1. a[rel] {padding-left:20px; background:url(rel-sprite.png) no-repeat 0 0; }
  2. a[rel~=“help”] {background-position: 0 -350px ;}
  3. a[rel~=“license”] {background-position: 0 -1347px ;}
  4. a[rel~=“no-follow”] {background-position: 0 -1200px ;}
  5. a[rel~=“tag”] {background-position: 0 -47px ;}

It’s all fun and games

I’ll be the first to admit this exercise has significant issues. I’m assuming the following elements are true:

  1. All possible rel attribute values are accounted for in my CSS, if not there will be a blank space generated by the first rule
  2. You can only have one relationship defined by XFN. Unfortunately, most people are defined by multiple values, i.e. rel=”met friend colleague”. This CSS does not account for multiple values.

So, the display of your rel attributes may be a bit off in the edge cases. Keep the spirit light and nobody will say anything… I hope. Have fun with your rel attributes. They’re just sitting there waiting to be used.

View the finished rel attribute style example.

Related Information

]]>
http://www.last-child.com/rel-attribute-display/feed/
Progressive enhancement of links using the CSS attribute selector http://www.last-child.com/css-attribute-selector/ http://www.last-child.com/css-attribute-selector/#comments Wed, 04 Jun 2008 20:13:00 +0000 Ted http://www.last-child.com/?p=152 Attribute Selector Test Page

We have avoided using CSS3 rules for too long. It’s been difficult to justify using rules that won’t work for a significant portion of our audience, Internet Explorer 7 and below. However, Internet Explorer 8 is coming out soon and does work with the features we like.

I think it’s fairly safe to assume IE7 users will upgrade to IE8 within a short time. Those stuck with IE6 for one reason or another will slowly disappear as they are given new computers or their locked down environments are upgraded.

So, with the future of CSS3 functionality within reach, I’ve been energized to begin experimenting again. I’ll be writing a series of blog posts over the next few months that look at CSS3 functionality as a progressive enhancement. How can we continue to deliver a perfectly fine web site to IE6 and IE7 and mobile phones while enhancing the functionality of more modern browsers and devices?

Attribute Selectors

CSS attribute selectors are the golden ring on the web development merry-go-round. They can be daunting to learn, addictive to use, but then disappointing when you realize they are out of your grasp when you test in Internet Explorer. We can, however, begin using them to add additional functionality based on your pre-existing, semantic code. Attribute selectors give you power to write CSS that pinpoints the stuff you already code, without having to go back and add classes or ids. I’ve written previously about using attribute selectors to let your users know the language of a site they are about to visit. This trick relies on the rarely used hreflang attribute, which identifies the language of the site targeted in a link.

There are many other attributes in your HTML, from table headers, image src, link titles, and selected options. Think about all of those juicy attributes just waiting to be targeted. Also think about how you could actually do something useful with them.

Announce the file type of a link with CSS

I once worked for a company that had hundreds of thousands of static HTML pages in their intranet. With no content management system; it was impossible to make global changes. The only thing they shared was a common set of style sheets. Does this sound familiar? Follow along as we increase your site’s usability in a less than perfect, but efficient way.

First off, for accessibility, you need to let users know when a link will open a file, what type it is, and how large it is. This is best done by adding it to your HTML code:

  1. <a href=“foo.pdf” class=“pdf”>Foo presentation (.pdf, 5kb)</a>

That delivers the information to everyone, regardless of their browser. This, however takes time and is a daunting task for updating legacy code.

We can, however, use the atttribute selector to target the extension of the link to display the icon and insert the text describing the file type. Here’s the sample HTML code:

  1. <li><a href=“foo.zip” >sample zip link</a></li>
  2. <li><a href=“foo.pdf” >sample pdf link</a></li>
  3. <li><a href=“foo.doc” >sample Word link</a></li>
  4. <li><a href=“foo.exe” >sample Executable link</a></li>
  5. <li><a href=“foo.png” >sample png image</a></li>
  6. <li><a href=“foo.mp3″ >sample MP3 file </a></li>
  7. </ul>

It’s a simple list of links for different types of files. We’ll be looking at the extensions: .zip, .pdf, .doc, .exe, .png, and .mp3. Feel free to extend this list to any extension you so desire. This would be especially helpful for a company that uses proprietary file types within their intranet.

Now, let’s look at the CSS:

  1. a[href$=“zip”],
  2. a[href$=“pdf”],
  3. a[href$=“doc”],
  4. a[href$=“exe”],
  5. a[href$=“png”],
  6. a[href$=“mp3″]  {padding-left:20px; background:url(bg-file-icons.png) no-repeat 0 0;}
  7. a[href$=“png”]{background-position: 0 -48px;}
  8. a[href$=“pdf”] {background-position: 0 -99px;}
  9. a[href$=“mp3″]{background-position: 0 -145px;}
  10. a[href$=“doc”]{background-position: 0 -199px;}
  11. a[href$=“exe”]{background-position: 0 -250px;}
  12.  
  13. a[href$=“.zip”]:after{content: “(.zip file)”; color:#999; margin-left:5px;}
  14. a[href$=“.pdf”]:after{content: “(.pdf file)”; color:#999; margin-left:5px;}
  15. a[href$=“.doc”]:after{content: “(.doc file)”; color:#999; margin-left:5px;}
  16. a[href$=“.exe”]:after{content: “(.exe file)”; color:#999; margin-left:5px;}
  17. a[href$=“.mp3″]:after{content: “(.mp3 file)”; color:#999; margin-left:5px;}
  18. a[href$=“.png”]:after{content: “(.png file)”; color:#999; margin-left:5px;}
  19. a[href$=“.exe”]:after{content: “(.exe file)”; color:#999; margin-left:5px;}

See the final test page.

Pattern matching in the attribute selector

We have some limited “regular expression” functionality in CSS3. We can search for an attribute’s presence and match a pattern within the attribute’s value.
Patrick Hunlon has a good summary of the pattern matching:

  • [foo] — Has an attribute named “foo”
  • [foo="bar"] — Has an attribute named “foo” with a value of “bar” (”bar”)
  • [foo~="bar"] — Value has the word “bar” in it somewhere (”blue bar stools”)
  • [foo^="bar"] — Value begins with “bar” (”barstool”)
  • [foo$="bar"] — Value ends with “bar” (”I was at the bar”)
  • [foo*="bar"] — Value has bar somewhere (”I was looking for barstools”)

Attach icons to anything with CSS

The CSS is simply looking to see if the desired extension is at the end of the link href. If so, apply the following styles.

Adding an icon to the link

First, we are match any of the desired file extensions. We then add a background image and some padding on the left side with a bulk rule. Then the background position on the sprite is adjust for each particular link type. Combining multiple icons into one background image reduces the number of files the user has to download, making your page faster. This will work with any browser that recognizes attribute selectors, including Internet Explorer 7. However, support for more obscure attributes may be spotty.

There’s another peculiarity with pattern matching. Some attributes are case sensitive while others are not. The href attribute is NOT case sensitive, so the above rules will also work if your image name was FOO.ZIP, foo.Zip, or foo.zip.

Adding the descriptive text

Now, we are going to add a bit of descriptive text to each link. We can’t describe the file size, but we can tell the user what type of file it is. This is using the :after(content:) functionality and is supported by Internet Explorer 8 (yeah!!!) but not Internet Explorer 7 and below (boo!!!).
We will also adjust the color and give it a bit of spacing.

A big step forward with a small chunk of work

There you have it. A small chunk of CSS coding has now added substantial usability to your legacy pages. While the CSS version is not as accessible as having the data in the actual link code, it’s a significant improvement over nothing at all. Further, there’s no harmful effect on browsers that do not understand the function. You’ve added information, but haven’t taken anything away. This is a win in my book. To save some time and effort, you could just download and use this package of CSS and icons from Alexander Kaiser.

This rather simple example of attribute selectors and pattern matching can open your eyes to many possibilities. There are a number of developers that have been expoloring this potential for the past few years. Take a look at some of these resources for more ideas and have some fun.

]]>
http://www.last-child.com/css-attribute-selector/feed/
UTF-8 compatible accented characters http://www.last-child.com/utf-8-compatible-accented-characters/ http://www.last-child.com/utf-8-compatible-accented-characters/#comments Mon, 26 May 2008 14:19:47 +0000 Ted http://www.last-child.com/?p=151 Sometimes the simplest information is difficult to find. Today I was searching for the HTML entities for French characters. Fortunately, I found the following resource French Encoding and Language Tags from Penn State.

Here’s an example of the information available on the Teaching with Technology site:

  Lowercase Vowels
à &agrave; (225)
â &acirc; (226)
ä &auml; (228)
è &egrave; (232)
é &eacute; (233)
ê &ecirc; (234)
ë &euml; (235)
î &icirc; (238)
ï &iuml; (239)
ô &ocirc; (244)
œ &oelig; (156)
ù &ugrave; (250)
û &ucirc; (251)
ü &uuml; (252)
ÿ &yuml; (255)

Teaching and Learning with Technology

]]>
http://www.last-child.com/utf-8-compatible-accented-characters/feed/
Flickr Video is live http://www.last-child.com/flickr-video-is-live/ http://www.last-child.com/flickr-video-is-live/#comments Wed, 09 Apr 2008 05:44:29 +0000 Ted http://www.last-child.com/flickr-video-is-live/ The often discussed, semi-fabled video on Flickr feature is finally released. It’s actually pretty cool. They’ve decided not to fight Yahoo! Video or You Tube for video supremacy. Instead, they’ve limited the time length to 90 seconds and hope to build a community of shorter, more personal videos that you can mix with your photographs.

It also includes more storage for your photographs. Here’s a sample of a video that I just posted. It’s a non-captioned capture of a train pulling into the Chemin Vert Metro stop.

Related articles

]]>
http://www.last-child.com/flickr-video-is-live/feed/
Captioning Sucks and Needs a Jump Start http://www.last-child.com/closed-captioning-need-a-jump-start/ http://www.last-child.com/closed-captioning-need-a-jump-start/#comments Mon, 31 Mar 2008 23:00:29 +0000 Ted http://www.last-child.com/closed-captioning-need-a-jump-start/ Captioning Sucks - No shit Sherlock, lets fix it
The internet is awash in video. YouTube, Yahoo Video, and other video sites host millions of videos with little attention to close captioning. For many sites, the text translations exist, they simply are not used. This sucks.

Television shows have featured captioning for many years. It’s sometimes the only way to figure out what they are saying on South Park. However, captioning standards are all over the place, the quality of text is questionable, and the industry is not supporting new innovations. This sucks.

Joe Clark is working on a new standard to fix these issues. He probably knows more about captioning than any other breathing creature in the world CaptioningSucks.com is the new home to the future of captioning. Perhaps it is time to buy the domain: CaptioningRules.com, for hopefully it won’t suck much longer.

Related articles

]]>
http://www.last-child.com/closed-captioning-need-a-jump-start/feed/
How to fix your K2 powered wordpress blog after upgrading to 2.5 http://www.last-child.com/how-to-fix-your-k2-powered-wordpress-blog-after-upgrading-to-25/ http://www.last-child.com/how-to-fix-your-k2-powered-wordpress-blog-after-upgrading-to-25/#comments Sun, 30 Mar 2008 18:14:02 +0000 Ted http://www.last-child.com/how-to-fix-your-k2-powered-wordpress-blog-after-upgrading-to-25/ Did you upgrade to Wordpress 2.5 and now discover a fatal error? You may see this error when you log into the admin section if you have enabled the K2 sidebar manager:
Fatal error: Call to undefined function wp_register_sidebar_widget() in /home/.foo/bar/mywebsite.com/wp-admin/includes/dashboard.php on line 31.

Brad at ChaoticTech has created a simple solution.

Here’s why: WordPress 2.5 has a slick new dashboard that takes use of widgets to work. K2 blocks widgets when you use Sidebar Modules (which is awesome), so WordPress 2.5 can’t get to widgets.

What this does is make it so that Widgets is disabled for everywhere so that Sidebar Modules will work, EXCEPT for the dashboard. This pretty much solves it.

Nice and simple.
K2 + WordPress 2.5 = Broken? I can fix that

Visit Chaotic Tech for the php code. You’ll simply over-write the widgets-removal.php file. Thanks Brad, you’ve saved me a ton of headaches.

Related articles

]]>
http://www.last-child.com/how-to-fix-your-k2-powered-wordpress-blog-after-upgrading-to-25/feed/
Multiple asides categories in Wordpress? http://www.last-child.com/multiple-asides-categories-in-wordpress/ http://www.last-child.com/multiple-asides-categories-in-wordpress/#comments Sun, 09 Mar 2008 19:44:25 +0000 Ted http://www.last-child.com/multiple-asides-categories-in-wordpress/ I’m working on a new theme for Wordpress. It’s a generic theme that I hope will make it easier to build multiple business sites in the future. Part of the goal is integrating the Yahoo! YUI library into the superb K2 theme.

I’ve come across a problem that should be easy to solve. Wordpress allows you to create a category whose posts are displayed differently than other category posts. These “asides” are short posts that appear in the side bar and not in the main body of the blog. This functionality is baked into the latest versions of Wordpress and the K2 theme’s admin screen makes it really easy to use.

However, I need to add a second variation of the asides. I want to create a new landing page with three promo spots just below the topnav. This branding section would allow the site to highlight important features, promos, sales, or blog posts. This could be done with asides, however I don’t want to lose the functionality of asides in the blog section.

Asides become Promos

I’ve started by cloning the asides module and functionality and creating a new set of functions (promos). The admin screen now allows you to choose a category that will be defined as a promo. Everything seems to be working until you get to the blog post page. Blog posts labeled as the asides category appear as they should.

However, the promos category and promo posts are not following the aside functionality. I’ve looked at the loop to see where it excludes the asides category and can’t find it. I can’t find the “the_post()” function, which may be the source of the issue. I would assume that the promos module is telling the_post that “promos” category is special and these posts should not be included in the loop, nor in the category list.

help?

Have you worked with the asides functionality in Wordpress? Do you have any suggestions? I’ll post a summary when I get the solution figured out.

Resources

Here’s a list of related web pages that include information but haven’t answered my questions.

Updates

The above link for the loop has some interesting information on multiple loops within one page. I’m going through the examples for some answers. Here’s a snippet of the post:

Loop Examples

Below are two examples of using multiple loops. The key to using multiple loops is that $wp_query can only be called once. In order to get around this it is possible to re-use the query by calling rewind_posts() or by creating a new query object. This is covered in example 1. In example 2, using a variable to store the results of a query is covered. Example 3 documents the use of the update_post_caches(); function to avoid common plugin problems. Finally, ‘multiple loops in action’ brings a bunch of ideas together to document one way of using multiple loops to promote posts of a certain category on your blog’s homepage.
Wordpress Codex: The Loop

Updated: the solution

During my initial modification of the files, I missed an important line that tells the loop to honor a new filter. So, if you want to duplicate the asides functionality with a new category, add this new section to wordpress/wp-content/themes/k2/app/includes/info.php

  1. function k2promos_filter($query) {
  2.         global $k2sbm_current_module;
  3.         $promos = get_option(‘k2promoscategory’);
  4.         // Only filter when it’s in the homepage
  5.         if ( ($promos != 0) and ($query-&gt;is_home) and (!$k2sbm_current_module) and
  6.  
  7.                 ( (function_exists(‘is_active_module’) and is_active_module(‘promos_module’)) or
  8.                   (function_exists(‘is_active_widget’) and is_active_widget(‘k2_promos_widget’)) ) ) {
  9.                 $priorcat = $query-&gt;get(‘cat’);
  10.                 if ( !empty($priorcat) ) {
  11.                         $priorcat .= ‘,’;
  12.                 }
  13.                 $query-&gt;set(‘cat’, $priorcat . ‘-’ . $promos);
  14.         }
  15.         return $query;
  16. }
  17. // Filter to remove promos from the loop
  18. add_filter(‘pre_get_posts’, ‘k2promos_filter’);

In a fit of cleverness, I changed the naming convention on my promos from promos_sidebar_module to promos_module. This threw my code off for a while.

This is the rough draft of my promos.php file that sits in wordpress/wp-content/themes/k2/app/modules/promos.php

  1. <div class=“bd”>
  2. have_posts() ):
  3.                 $promos-&gt;the_post();
  4. ?&gt;
  5.  
  6. <div class=“&lt;?php k2_post_class($promos_count++, true); ?&gt;”>
  7.  
  8. ‘,’‘); ?&gt;
  9. </div>
  10. </div>
  11. <p><label for="promos-module-num-posts"></label> <input id="promos-module-num-posts" name="promos_module_num_posts" value="&lt;?php echo(sbm_get_option(’num_posts‘)); ?&gt;" size="2" type="text"></p>
  12. 3));
  13. register_sidebar_module_control(’Promos‘, ‘promos_module_control‘);
  14. ?&gt;

There are also some changes in the options.php file and sbm section. Do a search for asides and start replacing with your new function, i.e. promos.

Remove the categories from latest posts and categories modules

The next step in this process was to make sure the promos category (and asides) don’t appear in the category and latest posts modules. These two modules sit inside the /k2/app/modules/ folder. They also use similar logic. We need to create a comma delimited list of categories to exclude from the functions that build the appropriate lists.

This code checks for aside and promos categories. It then creates a comma separator and then combines the categories into a string, i.e. “12,13″

  1. global $k2sbm_current_module;
  2.  
  3. $promos = get_option(‘k2promoscategory’);
  4. $asides = get_option(‘k2asidescategory’);
  5. /* lets create a new variable, excludes and use this to populate the exclude=foo parameter.*/
  6. $excludes = “”;
  7. if ( ($asides != 0) or ($promos != 0 )) {
  8. $separator = (($asides!=0)&amp;&amp;($promos!=0)) ? “,” : “”;
  9. $excludes = $asides . $separator . $promos;
  10. }

For the latest posts, we’ll need to create a slightly different string. We need to create a parameter and add a negative sign to each category

  1. $excludes = ‘-’ . $asides . $separator . ‘-’ . $promos;

actually, this is bad logic, I need to only add the - if the category exists. That’s what is great about blogging your code. You realize your mistakes before it is too late.

Finally, we use that excludes variable in the logic to hide the categories, for example (categories.php)

  1. wp_list_categories(‘title_li=&amp;show_count=1&amp;hierarchical=0&amp;exclude=’ . $excludes);

These snippets assume you do not want to include your asides posts into the latest posts and categories modules. you can simplify the code if you only want to exclude the promos.

]]>
http://www.last-child.com/multiple-asides-categories-in-wordpress/feed/
IE7 and IE8 hack behavior http://www.last-child.com/ie7-and-ie8-hack-behavior/ http://www.last-child.com/ie7-and-ie8-hack-behavior/#comments Wed, 05 Mar 2008 22:59:53 +0000 Ted http://www.last-child.com/ie7-and-ie8-hack-behavior/ We’ve had the luxury of hacks to fine tune Internet Explorer bugs. Internet Explorer 7 disabled the majority of hacks, with the exception of the * hack. This hack allowed you to send a style only to Internet Explorer by prefacing an attribute with an asterisk.

  1. /*this is for all browsers*/
  2. #main p {color:black;}
  3. /* this is for Internet Explorer */
  4. #main *p {color:red;}
  5. /*this is ignored by IE7 and will target IE6 */
  6. #main _p {color:green;}

This set of hacks allowed us to control IE7 and IE6. However, IE8 does not recognize the * hack. Special IE8 rules will either need to be defined with conditional comments, the Microsoft proposed meta tag, or some new hack to be discovered. Let’s hope the mature version of IE8 will reduce the need for these hacks.

For more information on the above hacks, visit an earlier post: IE7 Hacks

]]>
http://www.last-child.com/ie7-and-ie8-hack-behavior/feed/
Internet Explorer 8 beta released for testing http://www.last-child.com/internet-explorer-8-beta-released-for-testing/ http://www.last-child.com/internet-explorer-8-beta-released-for-testing/#comments Wed, 05 Mar 2008 22:50:10 +0000 Ted http://www.last-child.com/internet-explorer-8-beta-released-for-testing/ The MIX 2008 conference is this week and Microsoft is showing off some of their latest tools. One of these is the much anticipated and discussed Internet Explorer 8 browser. It’s important to remember that this is still a beta 1 release and is much better than the IE7 beta 1. This one actually has significant changes.

Download Internet Explorer 8

You can download Internet Explorer 8, Beta 1 from the Microsoft Developer site. However, here are a few things to keep in mind:

  1. This installation takes some time, about 15 minutes, and will require a restart of your computer.
  2. It will replace your existing Internet Explorer and is not available as a stand-alone browser.
  3. It renders in standards-mode as a default. You’ll see a button to render in IE7 mode. This is helpful to see the changes between the versions.
  4. Many sites will have significant layout issues in the standard view. You may need to re-evaluate your conditional comments to specify IE7 instead of greater than IE6
  5. IE8 is ignoring the * hack! This means you can use the underscore hack for IE6, the * hack for IE6 and IE7 and … um… I don’t know yet for IE8.

Is IE8 better than IE7?

It’s still really early to find all of the bugs and benefits of the new browser. The team needs to be commended for the fast development and their willingness to listen to criticism and change the default behavior at such a late point. I look forward to the more mature releases.

Updates

]]>
http://www.last-child.com/internet-explorer-8-beta-released-for-testing/feed/
Yahoo! Music - Easy, semantic, unobtrusive music badges http://www.last-child.com/yahoo-music-easy-semantic-unobtrusive-music-badges/ http://www.last-child.com/yahoo-music-easy-semantic-unobtrusive-music-badges/#comments Thu, 14 Feb 2008 12:59:09 +0000 Ted http://www.last-child.com/yahoo-music-easy-semantic-unobtrusive-music-badges/ Let’s say you want to link to a song on the internet. Let’s also say that you want your users to easily listen to that music. Further, let’s say you want people to find and enjoy the music without having JavaScript enabled.

Is this asking too much?

Yahoo’s Christian Heilmann has been advocating layered, semantic badging.

Yahoo Music badges and the simple href

Yahoo! Media Player has taken this approach to embedding music. You simply put a link to a music file in your site, insert the music JavaScript and away you go. The Music Badge Twiki also shows how you can extend the functionality with basic HTML elements, such as adding a title attribute or image inside the link.

Here’s an example of the badge in effect. Orca at the Casbah, 1992Orca live at the Casbah, 1992 I made a bootleg recording of Orca, a San Diego supergroup circa 1993. I’m simply going to create a basic link to the music file and include an optional image from flickr. The JavaScript will use that information for the player to appear. You’ll see page loads with a little play icon next to the link. There’s also a small player on the side of the browser. Click on either and you’ll see a media player appear in your browser with the music controls.

Here’s the code:

  1. <a href=“http://music.tdrake.net/orca.mp3″ title=“untitled song”><img src=“http://farm1.static.flickr.com/41/83669348_cbcae831d8_s.jpg” alt=“Orca at the Casbah, 1992″ />Orca live at the Casbah, 1992</a>
]]>
http://www.last-child.com/yahoo-music-easy-semantic-unobtrusive-music-badges/feed/