problem posts page 23

Stearns: Internet Explorer workarounds

We’ve had to do a bit of work to get our site working properly in IE, mostly version 6. I’ve recently started using a conditional stylesheet just for IE6 on my own site, like:

<!--[if lte IE 6]>
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_url')?>/styleIE6.css" />
<![endif]-->

and we did the same for Stearns.

Box Model

One issue we dealt with for IE6 in the conditional stylesheet was box model issues. IE6 handles margins, padding, and borders differently than other browsers, so we compensated for this in some places. One big issue was with our floated columns: The third would float below the second on some wide pages.

Continue reading post "Stearns: Internet Explorer workarounds"

iTunes CDDB info for the Yars

In January, my former band The Yars released their first full album (they were all shorts or live while I was there). I’ve had a copy of it since then, but haven’t imported it. I had heard the songs tons of times as Dwight was working on them, so was certainly burned out on them. I also don’t entirely like the sound direction the songs have taken, and it’s a little weird listening to another drummer play them. And it wasn’t in the iTunes store, so they had no CDDB data. I wanted to wait for that. So I never got around to importing it.

Today I decided to. It’s been in the iTunes store and other venues for months now. But still, there was no CDDB in the Gracenote database that iTunes uses. I could go to the store and see all the track info, but there was no way to get it to the album. But I found this article describing how you can copy store songs to a playlist, then use one of Doug’s scripts to copy them to another set of songs. So I went to the iTunes store to copy them to a playlist. Unfortunately, the new fancy iTunes song playlist doesn’t allow this to happen. The songs are like HTML elements on a page. And I had planned to boycott getting new versions of iTunes because they had cut off support for third party access. But just recently I think the very features that were now causing me trouble, plus the full new version number, had enticed me. I found the “Column Browser”, which does have a Cocoa style list of the songs, but I searched every possible genre with no luck at finding the Yars.

Continue reading post "iTunes CDDB info for the Yars"

wORDprESS Capitalization

Hmm, an interesting discovery I just made:

wOrDpress seems to change the capitalization of all instances of its own name, ie “woRdpreSS”, within the title and content of posts. Since URLs can be case sensitive, this caused a problem for one of the links I had on a previous post. It was changing the lowercase “p” to uppercase “P”. To solute the problem, I used the HTML escape sequence “p” in place of that “p”, and the link works just fine. I’ll have to watch for that next time.

[Update] Interestingly, the capitalization wasn’t changed on this post at all, but it was on the other. I’m not sure why.[/update]