
Which means that I wont be updating this blog any more ….
The new location is this.
Cheers and see you there !!
Posted by Vineet on August 5, 2009

Which means that I wont be updating this blog any more ….
The new location is this.
Cheers and see you there !!
Posted in Uncategorized | Leave a Comment »
Posted by Vineet on June 28, 2009

you always break our coolest toys!!!
.. hehe
…Actually I am really missing the ‘making-stuff-work-on-IE6′ aspect of web designing, now that I am more into coding…. nevertheless its great fun, whether its designing or development!
Posted in Uncategorized | Leave a Comment »
Posted by Vineet on June 15, 2009
I just started working with a web development start up, KODEPLAY as a developer. It has only been 2 weeks here but the amount of learning that I have had in such a short duration is some thing I had never experienced so far in my life!
If you are interested in knowing what the learning curve so far was like, read on..
I short, before joining I knew languages and I had made my own website using this knowledge (which can be found here). Still I wondered why did it looked amateurish. Just two weeks of work has given me the answer. It all comes down to one thing, you have to make yourself aware of what all things are possible and ideas will come naturally. And for that, it is important to be open to learning new things such as platforms, frameworks, libraries etc. Even if it means you have to break your head on other peoples’ code, all the effort is worth it…
Posted in Uncategorized | Tagged: job, web development, www.kodeplay.com | 1 Comment »
Posted by Vineet on May 14, 2009
Problem: Some browsers show links in the default color in spite of being styled in CSS. On hover the CSS styling works.
Problem faced in: Google Chrome and IE6. No problem in FF
Solution:It is pretty simple by the way. There are two ways to resolve this ..
ie. instead of
#menu a:link { .. }
use,
#menu a {..}
#menu a:link { …}
#menu a:visited {..}
#menu a:hover {.. }
#menu a:active {…}
Remember the order. Its very important .. (Mnemonic – LoVe HAte)
Many thanks to: A certain CSS freak at webmasterworld forums
Posted in CSS, IE6 issues | Tagged: Chrome, CSS, hover, HTML, IE6, link color | Leave a Comment »