Spring cleaning Gmail

Detritus from my “Stuff to Post” label (with my notes to self, where included):

January 4, 2006

February 21, 2006

February 26, 2006

March 16, 2006

August 29, 2006

November 27, 2006

August 2, 2007

Some of these links might not work anymore. I haven’t checked. Now I can clear out that label, though!

May 12 2008 11:07 am | Category: Blog | Tags: , , , , , , , , , | Comments Off

Possible theme weirdness

Note, I’ll be messing with my theme today, so you might notice some funkiness on the site. I tried to use a plug-in called Preview Theme, where you can specify a theme in the query string and it’ll show it to you if you’re logged in at a certain user level, but it didn’t work. So I’ll just mess with the live site. Fortunately I didn’t have to change any HTML, only CSS (because I rule).

Other than that, my day looks like this:

(Jenny sent me this e-card.)

Apr 19 2008 03:10 pm | Category: Blog | Tags: , , , , | Comments Off

Browser stats

Breakdown of my blog visitors by browser, according to StatCounter:

37.00% Firefox 2.0.0
23.00% MSIE 6.0
16.00% MSIE 7.0
11.00% Safari 1.2
6.00% Firefox 1.5.0
2.00% Firefox 1.0
2.00% Mozilla 5.0
1.00% Opera 9.21
1.00% Opera 9.20
1.00% Opera 9.00

So I don’t feel too terrible about feeding IE a stripped-down version, due to One True Layout problems.

Jun 11 2007 04:02 pm | Category: Blog | Tags: , , , | 4 Comments »

Pardon our dust

If things look weird around here during the next few days, particularly in the comments section, don’t worry your pretty little heads about it. I noticed that when comment threads get past a certain length, things start to look fucked up – specifically, the page doesn’t expand as far as it’s supposed to, and you end up with text on top of text. This baffles me because I’m usually basically the same code as I did on the old blog; but nevertheless, there is fucked-upedness, and I will address it as I get time.

One day, I imagine I’ll set up a dev server for this kind of UI testing – but that day is not today. So just deal until all is well.

Apr 24 2007 02:24 pm | Category: Blog | Tags: , , , | 6 Comments »

You learn something new every day

Here’s something I learned today.

Outlook Web Access does not like CSS background images – even though Outlook and Outlook Express do. (Unfortunately, OWA isn’t listed in Campaign Monitor’s Guide to CSS Support in Email). Furthermore, if you use the shorthand background notation and happen to have a background image in there, OWA won’t display any of your background properties. So, this…

background: #6461b6 url("images/sky.jpg") no-repeat top left;

…means that in OWA, your background color won’t be applied – which can be a problem if you’ve also specified white text.

On the other hand, if you do this…

background-color: #6461b6;
background-image: url("images/sky.jpg");
background-repeat: no-repeat;
background-position: top left;

…your background color will be there in OWA. But the image just ain’t going to show up no matter what, so get over it, buddy.

Aug 24 2006 04:01 pm | Category: Blog | Tags: , , | 1 Comment »

Anchor link weirdness

Yes, I know there is a problem with anchor links (e.g., when you click on the recent comments in the sidebar). You end up seeing only that comment, and not the post or any of the other comments. This is a side effect of using the otherwise kickass One True Layout. I must say I was a bit surprised to see this problem show up; I had thought it was an issue only with named anchors (e.g., <a name="whatever">), but apparently it’s also an issue with referring to IDs. And now that I think about it, that makes sense; why would it be an issue with named anchors but not IDs?

Anyway, it’s frustrating; I’ll let you know when I find a fix. I am not going to ditch the One True Layout, that’s for sure!

Update: I have a temporary solution to this problem. It involves reverting to named anchors instead of IDs on divs, and giving each anchor position: absolute (If you’re really curious, you can view the source). I’ll need to put in some hacks for IE, but then there’s a lot I need to do for IE, hence the current no-stylesheet version. And I also don’t know yet how this behaves in Safari or Opera.

Aug 01 2006 01:24 pm | Category: Blog | Tags: , , , | 1 Comment »

New look

I’m playing around with a new design for my blog. It’s not finalized yet, but take a look and let me know what you think. (I wouldn’t recommend viewing it with IE, since I haven’t had a chance to do that myself yet.) I just feel like it’s time for a change. And, even more appealing to my geekiness, the new design utlizes equal height columns of the One True Layout!

Jul 16 2006 12:39 pm | Category: Blog | Tags: , | 7 Comments »

It’s naked time

What happened to the design?

To know more about why styles are disabled on this web site, visit the Annual CSS Naked Day website for more information.

Apr 05 2006 08:15 am | Category: Blog | Tags: , , | 6 Comments »

AEA wrap-up

Liveblogging As promised, I was blogging away at An Event Apart today. You can read the thrilling play-by-play at CSS Insider.

I also posted my photos to the AEA Atlanta Flickr pool – my first time using Flickr for anything other than writing clever comments about other people’s photos. Honestly, I think their UI leaves something to be desired, but can thousands of nerds be wrong? Eh, I’ll just stick with Gallery and let everyone else enjoy the Flickr hotness.

Finally, on the CSS Insider post, you’ll notice the following teaser:

Earlier I did a short interview with Eric Meyer, Jeffrey Zeldman, and Jason Santa Maria. It will be available for download in a few weeks via my forthcoming podcast site (link to come).

So there you have it, the anti-climactic pseudo-public annoucement of the project Rusty and I have been working on for the past ~3 months. Sorry there wasn’t more pomp and circumstance surrounding it… but I could put some DHTML confetti on my blog if you really want me to.

Apr 03 2006 11:34 pm | Category: Blog | Tags: , , , | 3 Comments »

Mysterious disappearing forms in Safari

I’m used to dealing with incorrect CSS rendering, lackluster AJAX support, memory leaks, and all the rest of it in IE. But the other day I came across something new and baffling – and it’s not an IE problem, so it was a huge Whiskey-Tango-Foxtrot* moment.

The problem: In Safari (2.0.3), nothing within the <form></form> tags was showing up. But if I removed the opening <form> tag, the inputs, labels, etc. showed up as expected!

After much head-scratching, fruitless Googling, and futzing with HTML and CSS, I found the fix: the form was inside a div, and when I applied display: block to the containing div, all the form elements showed up correctly!

I guess that’ll be one more for the Quirksmode list of Safari bugs!

Update: This happens only if the containing div has the clearfix class applied.

* h/t Rusty

Mar 30 2006 02:12 pm | Category: Blog | Tags: , , , , , | 5 Comments »
Next Page »