This site asks you to enter the full address of where you grew up and then plays a video which incorporates images of the street. From a technology view point it’s an incredible feat of engineering but from an emotional point of view it’s really quite clever and subtle. As a boy I can remember running home coz I was late for my tea and that immediately jumped into my mind with the imagery. Does that now mean every time I hear the track I will be transported back to my childhood? That’s quite clever, subtle and manipulative if that was the intention……I still love it though
http://thewildernessdowntown.com/
Posted: October 20th, 2010
Categories:
Ramblings
Tags:
advertising,
css,
html5,
music
Comments:
No Comments.
This is a nice little hack to print background images which are not printed by default by browsers. Normally you’d use the image tag but this little fix uses list-style-image instead.
So, lets say you’ve got an identifier setup called logo, in the print CSS you need to do this
#lo\go {
display: list-item;
list-style-image: url(logo.gif);
list-style-position: inside;
height: 39px;
width: 125px;
}
It apparently works in IE6, Firefox 1.0 and 1.5, Opera 8.5 and Safari. Pretty neat huh? A full explanation can be found here.
Posted: July 14th, 2006
Categories:
Useful stuff
Tags:
css
Comments:
No Comments.
I’ve just learnt a good hack for min-height. As you’ll know min-height is one of the few things that IE gets right and Firefox doesn’t. So, this little trick below sorts it out. If you want a box to have the minimum height of 200 pixels but to expand when more text is entered, then give tihs this a try:
min-height: 200px;
height: auto !important;
height: 200px;
Posted: March 16th, 2006
Categories:
Useful stuff
Tags:
css
Comments:
No Comments.
So I’m using a table to display data from a database. In Firefox it’s the right width but in IE6 it goes off to the right. Another IE6 bug coz it can’t handle tables with a width of 100% in a layer without a set width. Apparently what it does is use the width of the window – nice, I guess Microsoft must be a bit short on cash to be able to invest in building a browser that’s standards compliant!! Anyways, I got round it by slapping the table into it’s own layer with a width set to 100% and that did the trick.
Posted: September 3rd, 2005
Categories:
Useful stuff
Tags:
css
Comments:
No Comments.