Posts

Showing posts from July, 2010

Looking for font resizing

If you are looking  for font resizing functionality in your website then you can find the solution at here : http://www.dyn-web.com/code/fontsizer/ And if you want to crack its license file then you can contact me at: tiggem1993 at gmail dot com. hint : http://www.dolcevie.com/js/converter.html

Anchor not working in Firefox, Crome and Safari?

If your anchor tag is working in IE only and not working in FF, google crome and safari... then use Name in source tag instead of ID . becasue FF(firefox), google crome and safari can understand anchoring by name attribute only. and for " name " attribute you have to use anchore tag. for example : <a href="#myanchor">my link </a> ...... ...... <a name="myanchor">&nbsp;</a> <p> ...... .... my text ..... .... </p> That's it!!! now check and your anchoring wil work in all browsers..... :) to know more about anchoring visit this site : Anchors not working in Firefox and Safari