That’s my current progress on my sand/salt tower (lulz). Arts and Crafts are awesome, I just need supplies like more Purple, Blue, Green, and Orange chalk.
Monthly Archive for February, 2008
9/21/08: This crap doesn’t work. Just skip this entry. lol.
More Crap: Achieving a 1px grey line using <hr /> tags (for me, since today) are actually quite hard to achieve. I use them to separate them posts and entries. Usually I just pop a border property (example: border: 1px solid #CCC;) under the hr tag in my style sheet. This creates a 2px line.
In equation I added 0 as a value for border-bottom. This method sometimes creates a left border, to fix this I added border-left: 0; to the selector.
hr {
border-top: 1px solid #CCC;
border-bottom: 0;
border-left: 0;
border-right: 0;
}
Using the same method, only condensed:
hr {
border: 0;
border-top: 1px solid #CCC;
}
Edit: As pointed out by Kaylee, these methods are not compatible with IE.
Try not to save the best for last. I always thought the last is the most important and more likely to be remembered. When I eat, I always leave the best part of the meal for the finale (it usually gets nabbed anyways), but I realize I never really remember the final taste.
As an experiment (for this entry, I’m very devoted to this blog) I tried eating the best parts of a meal first. Now I actually remember how my soup tasted (my mom makes it with the perfect amount of salt). Moral: Try things in reverse (its much more fun anyways)!

