November Galleries’ Alexa Rankings

Comments (13)Category: Galleries

Another month goes by. Here are the updated Alexa rankings of 143 gallery sites.

2 New Gallery Websites were added since last time: Nice Stylesheet and LoopPress.

Daily Goody – Website of Ted Lermontov

Comments (0)Category: Uncategorized

I’ve been browsing through my collection of links, and I have found this website – A Portfolio Website of Ted Lermontov. I liked this website for several reasons…

First of all, the color choice is very catching and contrast is great. Personally, I like the combination of colors where black is a major part of it.

Secondly, graphics are clear and without pixelation.

Thirdly, clean layout.

What I would change is the font color of the footer links. At this point there are set to dark gray, which makes it hard to read against the black background.

tedlermontov.png

Current Readings

Comments (0)Category: Uncategorized

Following Sean Voisen’s post, I am going to display a list of books I am currently reading as well.
books.jpg
As you can tell I read a great variety of books. :) I love reading and try to read any moment I can.

Here is a list of those books pictured above from the top to bottom:

The Historian
by Elizabeth Kostova.
The 4-Hour work Week: Escape 9-5, Live Anywhere, and Join the New Rich by Timothy Ferris.
CSS Cookbook, 2nd Edition by Christopher Schmitt
Designing with Web Standards (2nd Edition) by Jeffrey Zeldman
Inspirability: 40 Top Designers Speak Out About What Inspires by Matt Pashkow
Codin’ for the Web: A Designer’s Guide to Developing Dynamic Web Sites by Charles Wyke-Smith
Computer Security for the Home and Small Office by Thomas C. Greene
Reminiscences of a Stock Operator Illustrated (Marketplace Book) by Edwin Lefevre
Simple Web Sites: Organizing Content-rich Web Sites into Simple Structures by Stefan Mumaw

Rogie’s CSS PNG Fix for IE6

Comments (34)Category: Uncategorized

UPDATE: View this Updated post for a full coverage of IE6 and Tranparent PNGs Issues

Update: A working example can be found here – IE6 PNG fix

Rogie over at komodomedia wrote an excellent article explaining in details how to make sure that IE6 displays transparent png images correctly. I have scanned over the comments and saw that somebody asked whether that technique worked with repeated background images, which it wasn’t.

So I have looked over that useful little snippet

#container {
width:780px; margin:15px auto 0 auto;
background:url(images/bck-content.png) repeat-y top left;
azimuth: expression(
this.pngSet?this.pngSet=true:(this.nodeName == "IMG" && this.src.toLowerCase().indexOf('.png')>-1?(this.runtimeStyle.backgroundImage = "none",
this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.src + "', sizingMethod='image')",
this.src = "images/blank.gif"):(this.origBg = this.origBg? this.origBg :this.currentStyle.backgroundImage.toString().replace('url("','').replace('")',''),
this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.origBg + "', sizingMethod='crop')",
this.runtimeStyle.backgroundImage = "none")),this.pngSet=true
);
}

and saw that if I change crop to scale,

#container {
width:780px; margin:15px auto 0 auto;
background:url(images/bck-content.png) repeat-y top left;
azimuth: expression(
this.pngSet?this.pngSet=true:(this.nodeName == "IMG" && this.src.toLowerCase().indexOf('.png')>-1?(this.runtimeStyle.backgroundImage = "none",
this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.src + "', sizingMethod='image')",
this.src = "images/blank.gif"):(this.origBg = this.origBg? this.origBg :this.currentStyle.backgroundImage.toString().replace('url("','').replace('")',''),
this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.origBg + "', sizingMethod='scale')",
this.runtimeStyle.backgroundImage = "none")),this.pngSet=true
);
}

the repeated background images would actually start displaying properly.

Here are some screenshots of what I am talking about.

repeated background image in IE6 without png fix
ie6without1.png

repeated background image in IE6 with png fix and crop setting
ie6-withcrop1.png

and Lo and Behold – repeated background image in IE6 with png fix and scale setting
ie6-withscale1.png

What are your favorite firefox extensions?

Comments (10)Category: Uncategorized

Below is a list my favorite firefox extensions that simplify my life on a daily basis.

  1. Tab Counter by Morac – very useful tool that displays a number of currently open tabs. I normally try to limit my number of open tabs to a certain number, so that the browser doesn’t crash.

    firefox-top.png

  2. Measure It by Kevin Freitas – irreplaceable extension that helps to measure dimensions of images, distance between certain elements on a web page, etc.

    firefox-bottom.png

  3. Link Checker by Kevin Freitas – very useful tool that checks links validity on a web page.

    firefox-checklinks.png

  4. Image Zoom by Jason Adams

    firefox-imagezoom1.png

  5. IE View by Paul Roub – compare how website looks in FF and IE with two mouse clicks.

    firefox-viewie.png

  6. ColorZilla by Alex Sirota – also an irreplaceable extension that truly saves me a lot of time.

    firefox-bottom.png

  7. Firebug by Joe Hewitt – enables you to edit, debug, and monitor CSS, HTML, and JavaScript live in any web page.

    firefox-firebug.png

  8. URL Link by Neil Bird – allows you to select a non-URL link (for example: www.google.com) in a web-page and open it in a browser window.

    firefox-url.png

  9. Dummy Lipsum by Sogame – generates dummy lipsum text.

    firefox-dummylipsum.png

  10. CSS Validator by Michael Langley – validates a page using the W3C CSS Validator.

    firefox-valcss.png

  11. Page Validator by Michael Langley – validates a page using the W3C Markup Validation Service.

    firefox-valpage.png

  12. Save as Image by Rowan Lewis – allows you to save a page as an image.

    firefox-saveimage.png

  13. Web Developer by Chris Pederick

    firefox-webdev.png

  14. Update Notifier by Todd Long – notifies you when updates are available for your extensions and themes. This is a must have for those who have lots of extensions installed.

    firefox-top.png

  15. Time Tracker by Juan Casares – keeps track of how much time you spend browsing.

    firefox-bottom2.png

  16. View Source Chart by Jennifer Madden

    firefox-viewsrx.png

  17. CSS Viewer by Nicolas Huon – a very simple yet very useful css property viewer.

    firefox-cssviewer.png

  18. HTML Validator by Marc Gueury

    firefox-bottom2.png

  19. Restart Firefox by Jed Brown

    firefox-top.png

  20. Firefox Accessibility by Jon Gunderson at Illinois Center for Information Accessibility

    firefox-accessibility.png

  21. Firecal by Shivdep

    firefox-firecal.png

What are your favorite extensions that you would like to share?