2010.06.24

CSS Snippet for Drop Shadow

By underblob @ 6:04pm — Categories: Design, HTTP, Tech
Tags: , , , ,

Use this snippet to add drop shadows to elements for Mozilla, Webkit, and browsers that support CSS3:

	-moz-box-shadow: 1px 2px 3px #666;
	-webkit-box-shadow: 1px 2px 3px #666;
	box-shadow: 1px 2px 3px #666;
	/* box-shadow: X Y blur hex; */

CSS Snippet for Rounded Corners

By underblob @ 5:54pm — Categories: Design, HTTP, Tech
Tags: , , , , ,

Use this CSS to apply rounded corners to Mozilla, Webkit, and browsers that support CSS3:

	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;

2010.06.21

XAMPP php.ini

By underblob @ 9:44am — Categories: LAMP, Tech

Note to self: when installing XAMMP for development on your legacy apps, be sure to set PHP short tags in php.ini:

short_open_tag = On

2010.06.07

Fairmont Olympic Hotel Lobby

By underblob @ 5:03pm — Categories: Photo, Remote Post
Tags: , ,

image

This place feels like it’s from another time. And haunted.

2010.06.06

Curls in Sleep

By underblob @ 5:41am — Categories: Dreams, Random, Remote Post
Tags: 

Cursive L
Looping recursive
into helix
on horizon

2010.06.02

jQuery iFrame access

By underblob @ 4:16pm — Categories: Javascript, Tech
Tags: ,

Trying to manipulate the iframe from a jQuery script running inside the iframe. Here is how to get a handle on the iframe with jQuery when you have id attribute iframe-id-attribute set on the iframe:

var ifr = $( '#iframe-id-attribue', window.parent.document );