Follow Ohmkumar on Twitter
16
Jul/10
0

Google font API

Amazing option to embed fonts to html documents.
Easy to implement.
Reference: Google Fonts API
Expecting more fonts, also expecting the option to embed our own fonts.

8
Mar/10
0

ie6 PNG fix for CSS background images

ie6 - Internet Explorer 6

Recently i just gone through this excellent script for png fix for ie6, even png images declared in css background.
All you have to do is add these below to lines between tags.

<!–[if ie6]>
<script type=”text/javascript” src=”orpngfix.js”></script>
<![endif]–>

Add the orpngfix.js and clear.gif files in the root folder.
Enjoy :)

16
Dec/09
0

Remove borders on links in Firefox

How to remove dotted border in firefox?
After the long search process i found the solution for this.
It’s very simple add these below style in your css.

a:focus { outline: none; }

29
Aug/08
2

CSS Dock Menu

CSS Dock Menu

CSS - Dockmenu

In between the HTML <head> </head>tag, add the following code

[sourcecode language='html']


[/sourcecode]
The first part is the Javascript, second part is CSS stylesheet, and last part is the PNG hack for IE 6.

Add the following code to anywhere within the <body></body> tag:

[sourcecode language='javascript']

[/sourcecode]

Add menu item to the top dock

[sourcecode language='html']

home

Home
[/sourcecode]

Add menu item to the bottom dock

[sourcecode language='html']

Home

home
[/sourcecode]

Browser Compatibility

I have tested on IE 6, IE 7, Opera 9, Firefox 2, and Safari 2 (although there are some minor rendering issues with Safari).

Download

Download