« previous | main | next »
welcome
I have sat in the bluish laptop glow for months now, coding my pretty little fingers off. It’s still got some pixels where I didn’t mean to put them. It’s got some kinks that are anything but intriguing. A billion URLs still direct to the old site. Things important remain as-yet un-imported.
It’s a work-in-progress, and I kind of like it that way as it gives me things to do in the hours between my wake-up time and my boyfriend’s early afternoon slump into the awake world.
Welcome. I’m glad you’re here.
Below: Vacation pictures.
comments (23)
Accept this invisible bottle of wine as a virtual housewarming gift for your new cyber home. V pretty!
1 | C | November 7, 2004 01:31 PM
Those who do not give a rat's ass about Web jargon and the specifics of this site's implementation are hereby warned that there's nothing to see in this comment.
Uhh... I seem to recall you carrying on some months ago about being a CSS n00b, but... da-amn. I keep on telling people it's easy, what you've done here is proof of my point.
There are boatloads of people dithering around in WYSIWYG Land, billing hours - and delivering work that's utter crap compared to what you've done here.
However, I need to appeal to your perfectionist nature...
I see a bit of a booger with the navstuff in Firefox (and presumably Mozilla and Opera as well), captured at:
http://www.io.com/persist1/temp/smitten-cap.gif
If you put the vertical padding on #navtop and #navbottom, and the horizontal padding on your list items, the problem should go away.
Also, you've got some extraneous stuff in both your page markup and your stylesheet - if you're wondering how to get at it and fix it, e-mail me.
2 | ben | November 7, 2004 01:38 PM
Thanks for the feedback! I'd had that padding issue when I first showed this on Firefox, I stayed up very late, gave up, and the next morning it was gone. I considered it some sort of early Hanukah miracle. Sigh. I'll email you later.
3 | deb | November 7, 2004 01:45 PM
OMG this is sooo hot.
love it.
cheers,
jocelyn
4 | jocelyn | November 7, 2004 02:27 PM
The new site looks great! You did an amazing job.
5 | Matt | November 7, 2004 04:35 PM
The Smitten is officially the New Hotness.
And of course, all links have been updated.
6 | New Blue Shoe | November 7, 2004 04:55 PM
Congrats on your new digs! I know diddly about coding, but it looks great on my Firefox.
7 | Robert | November 7, 2004 05:24 PM
Oh! The design is lovely. And you know I'm picky :)
8 | Colleen | November 7, 2004 06:39 PM
Looks quite nice. You change the drapes since I was here last?
9 | Frankenstein | November 8, 2004 12:31 AM
Hi deb, nice digs. :-) And good job indeed on the markup.
I need to point out some more boogers though.
For one, the bottom navigation not only has the pixel boogers, it also wraps. Although that will probably go away once the other booger is wiped, assuming that you picked the width just so it'd fit everything that belongs in there.
That other booger is that a lot of characters look funny here (which includes the copyright mark in the bottom navigation thus causing it to wrap, I assume).
Firefox tells me you want this site to be served as UTF-8, but the server tells it to use ISO-Latin1 instead.
Indeed, if I look at the server's headers, I see
$ curl -I www.thesmitten.com | grep -i charset Content-Type: text/html; charset=ISO-8859-1
Unfortunately, the standards say that the browser has to ignore an encoding specified in the document in favour of one specified in the headers. (It really should have been the other way around, but it's way too late to fix those standards now.)
That means you'll need (someone) to fix your server configuration so it either says UTF-8 in the headers (this is preferred) or does not specify an encoding (so the browser would fall back to looking for a definition in the document).
10 | Aristotle | November 8, 2004 09:32 AM
welcome to your new digs! happy site-warming! cheers to you, deb, it looks fabulous!!!!!!
11 | sassylittlepunkin | November 8, 2004 10:22 AM
i like that it reminds me of fall, but not in a hit you over the head leaves and trees way. very nice.
12 | girlwonder | November 8, 2004 10:39 AM
Aristotle, dimes to donuts says that MT serves everything as ISO Latin by default... and yeppers, when I dig into MT3 tag documentation, I find:
"MTPublishCharset The value of the PublishCharset setting in mt.cfg; if not set, defaults to iso-8859-1."
For the umpteenth time I'm jealous of myself, that I can just write my own damn software.
13 | ben | November 8, 2004 01:04 PM
I love the new design - and the smitten logo. Absolutely superb. Kudos!
14 | Jalpuna! | November 8, 2004 06:42 PM
ben, sure, but the pages here are UTF-8. It's just that the server tells clients that the pages are ISO-8859-1, and so anything other than US-ASCII characters is misinterpreted.
15 | Aristotle | November 9, 2004 09:47 AM
...So the fix is either to insert the PublishCharset tag, or change the relevant mt.cfg setting to utf-8, right?
(I looked in the panels for the MT2.6x site I post to, there was nowhere I found to change the setting, dunno if that's been fixed in MT3, or if I just didn't look hard enough. *shrug*)
16 | ben | November 9, 2004 02:08 PM
One of you wants to fix this for me, right?
17 | deb | November 9, 2004 02:23 PM
If the one who set up MT for you in the first place can't do it, then I'll gladly volunteer. Doubt it'd be much effort at all.
18 | ben | November 9, 2004 08:12 PM
congratulations on the finished product, it looks great. to be honest, i check in for your writing more than the look of the site itself, but this is pretty easy on the eyes too! it's great to see hard work pay off :-)
19 | hazel | November 10, 2004 09:27 AM
LOVE your site!
20 | Chris | November 10, 2004 10:38 AM
ben: no, the problem is not the MT setting. The page is UTF-8, and MT does put the appropriate header in the pages.
The problem is that the server insists that the document is actually Latin1, and since browsers must obey the server headers over the document's content, that means it gets rendered as Latin1.
So there are two options to fix this. The MT setting and the server headers need to coincide, so either Apache would be configured to say the pages are UTF-8, or MT would be configured to produce Latin1 pages. Which way it's done matters little. Serving UTF-8 is preferrable for "ideological" reasons, but I'm not one to scorn pragmatism either.
deb: I'm certainly volunteering, if you want.
21 | Aristotle | November 10, 2004 09:13 PM
Aristotle... oh. I'd misunderstood, mostly because I'm still kinda green about headers and the like.
Hurrah for .htaccess, I guess. (Haven't laid eyes on a Dreamhost control panel in something like two years, so I couldn't say if Deb's got lower-level access to the needed config.
...And I'm with ya on the ideology.
22 | ben | November 10, 2004 09:54 PM
Aw, so pretty! Congrats on your new baby - you must be very proud.
23 | Em | February 23, 2005 06:37 PM