lime icon

Phosphorus and Lime

A Developer's Broadsheet

This blog has been deprecated. Please visit my new blog at klenwell.com/press.
Deconstructing myspace
My sister wants me to makeover her myspace profile, so I'm trying to figure out the layout for profile pages. Here's the stylesheet I've come up with:

/* SCREEN BG */
body {
background-color:#333;
border-style:none;
}

/* PAGE, FOOTER BG */
/* border: LR ok, T or B (not both) */
table {
background-color:red;
border:2px solid lime;
}

/* NAVBAR, PROFILE TABLE BG */
/* border OK */
table table {
background-color:orange;
border:2px solid cyan;
}

/* PROFILE BLOCK HEADERS or BG */
/* border OK */
table table table {
background-color:yellow;
border:2px solid black;
}

/* PROFILE BLOCK BODY BG */
/* border NO */
table table table table {
background-color:green;
border:2px solid fuchsia;
}

/* TD: must be transparent! */
td {
background-color:transparent;
border:none;
}


The profile page html is pretty shabby. Of course, as soon as I get it figured out, they'll switch to something more rational.