How do I get a floating footer to stick to the bottom of the viewport in IE 6?

This may work for you. It works on IE6 and Firefox 2.0.0.17 for me. Give it a shot. I made the footer’s height very tall, just for effect. You would obviously change it to what you need. I hope this works for you. <!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01//EN” “http://www.w3.org/TR/html4/strict.dtd”> <html> <head> <title>Liquid Footer</title> <style … Read more

Force Internet Explorer to use a specific Java Runtime Environment install?

First, disable the currently installed version of Java. To do this, go to Control Panel > Java > Advanced > Default Java for Browsers and uncheck Microsoft Internet Explorer. Next, enable the version of Java you want to use instead. To do this, go to (for example) C:\Program Files\Java\jre1.5.0_15\bin (where jre1.5.0_15 is the version of … Read more

Javascript Image Resize

To modify an image proportionally, simply only alter one of the width/height css properties, leave the other set to auto. image.style.width=”50%” image.style.height=”auto” This will ensure that its aspect ratio remains the same. Bear in mind that browsers tend to suck at resizing images nicely – you’ll probably find that your resized image looks horrible.