September8
5 days on Chrome and it has become my primary browser on my PC (they don’t have a Mac version yet) am thinking of uninstalling IE & FF
..no wait..I think I’ll still keep FF mostly because for it’s add-on’s and plugins.
The chrome experience is light and intuitive…which according to me should be the case of any web app. Each tab in Chrome has it’s own memory space which means tabs are independent from each other. They don’t meddle with each others memory space so a sleeker/faster browsing experience and of course an elegant “Garbage Collection” - means a better interactive performance of web apps.
You can read the “Chrome” story here. Am sure there are new things to learn and think about.
This is what I like about Google/Apple : Simplicity and Good design principles. I like the part which says “I don’t care if my browser has one less cool feature..but I want it to be rock solid”
Here are the “Ten Things we’d like to see in Chrome”
Anyways..you folks enjoy reading the “Chrome Story”
September4
A neat clutter-free and I should say a pretty fast web browser from Google: Google Chrome Beta is now available here.
I think google has done it again..the design is just awesome. Simplicity - the key to good design and a de facto(r) in all google products.
Am delivering my first post through Chrome..so far so good.
Check it out!!
October1
When you design pages that look like wizards and when the information you are gathering flows over into multiple pages you might want to give your user a feel of filling a page in which case you would want to display your NEXT buttons as text.
Actually it is very simple our task is now to style the button so that it looks like text here is how we define the style
.btn {Â background-color: transparent; border: 0; padding: 0;}
now you can apply this style to the button you wish by calling the pseudo-class by name like
<input type=”button” class=”btn” />

October1
Styling hyperlinks could be used effectively to replace the old style navigation buttons.To create this effect we style the :hover and :active pseudo-classes of the anchor tag. Am gonna define style separatley one for the :link and :visited styles and other for :hover and :active
Personally I like the hyperlinks to appear in a contrasting color to the page background by default, with a dotted underline, and on hover I would like to change the text-color so that it appears highlighted.
CSS code:
body{
background-color: #171717;
}
a:link, a:visited{
font-family: “Trebuchet MS”,Trebuchet,Verdana,Sans-Serif;
text-decoration: none;
border-bottom: 1px dotted #eee;
background-color: transparent;
color:#fff;
}
a:hover, a:active{
font-family: “Trebuchet MS”,Trebuchet,Verdana,Sans-Serif;
text-decoration: none;
border-bottom: 1px dotted #eee;
background-color: transparent;
color:#4eb5e1;
}
and the html looks like this

and on mouse over the links looks like this.
