Archive for the ‘web design’ Category
Spreading Firefox
Thursday, November 4th, 2010browsershots.org: a great tool for web designers & developers
Monday, February 2nd, 2009I found this great website http://browsershots.org/.
Everyone that had worked with web pages before will know what a nightmare it is to get cross-browser compatiblity (thanks IE6). Browsershots.org makes screenshots of your webpage in different browsers and then it lets you see the images generated where you will be able to see how your webpage is rendered in different browsers.
It only takes 3 steps:
1) Enter your URL and select which browsers do you want to test your webpage in.
2) Wait until the system finishes executing your request.
3) Check out the result images for the different browsers.
IE6 CSS fixed footer hack
Friday, June 27th, 2008In order to have a fixed footer on your HTML page that stays fixed at the bottom even if the user scrolls and that it works in IE6, you should use this hack:
<!–[if lte IE 6]>
<style type=”text/css”>
body {height:100%; overflow-y:auto;}
html {overflow-x:auto; overflow-y:hidden;}
* html #footer {position:absolute;}
</style>
<![endif]–>
Check this working example: http://www.pleyadechile.cl



