Sunday 16 July 2017

IE7 Issues Text Indent

                 Unfortunately IE 7 is still widespread among the users hence while theming we have to give special importance to the great Internet Explorer.

Regarding the Text-indent: -999px issue use the following instead for IE7:

text-indent:0;
font-size:0px;
color: #fff;


Now how to differentiate between IE7 and the other browsers?

If your theme is clashing severely with the different browsers you can create different stylesheet (.css) for each browser and use javascript to detect the browser the use is using.

But if you are having issues with only IE7 do the following:
add below the <body> tag:
<!--[if IE]><div id="IEroot"><![endif]-->
add above the </body>
<!--[if IE]></div><![endif]-->

Then in your stylesheet extract the divs and make the change
Eg #IEroot div {color: red}

Monday 3 July 2017

Javascript basic tutorial

Javascript basic tutorial

Let's start our journey into the learning of JavaScript by typing in the following HTML code. We will add to it and eventually wind up with a working clock similar to the one above. Of course it will take us a several lessons to get there because we first need to learn the basics.

 <HTML>
 <HEAD>
 <TITLE>Our First Script</TITLE>
 </HEAD>
 <BODY>
 <CENTER>
 <H1>Our First Script</H1>
 </CENTER>
 <P>Today is
 </BODY>
 </HTML>

Save this code as script1.html.  It looks something like this when we load it into our browser by using File/Open on the menu.

Our First Script
Today is



Not very exciting! Lets add some JavaScript to our code. Add the following script after the line <P>Today is

 <SCRIPT Language="JavaScript">
 var today = new Date()
 document.write(today)
 </SCRIPT>

Your html code should now look like this.

 <HTML>
 <HEAD>
 <TITLE>Our First Script</TITLE>
 </HEAD>
 <BODY>
 <CENTER>
 <H1>Our First Script</H1>
 </CENTER>
 <P>Today is
 <SCRIPT Language="JavaScript">
 var today = new Date()
 document.write(today)
 </SCRIPT>
 </BODY>
 </HTML>

Save this script and reload it into you browser. It should render something like this:

Our First Script
Today is Mon Jul 03 2017 15:54:47 GMT+0530 (India Standard Time)




Still not real exciting, but remember this is only our first script and does demonstrate something you can't do with plain HTML.

Sunday 18 May 2014

New Social Website Misty World

Misty World

New Social Website "Misty World" has released .
You can have this features

  •  Add Friends
  • Send Message
  • Play Games
  • Download Bussiness card...etc

Register and be a member now...



Wednesday 2 October 2013

Some Important Portals & their Founders



1. #Google— Larry Page & Sergey Brin
2. #Facebook— Mark Zuckerberg
3. #Yahoo— David Filo & Jerry Yang
4. #Twitter— Jack Dorsey & Dick Costolo
5. #Internet— Tim Berners Lee
6. #Linkdin— Reid Hoffman, Allen Blue& Koonstantin Guericke
7. #Email— Shiva Ayyadurai
8. #Gtalk— Richard Wah kan
9. #Whats up— Laurel Kirtz
10. #Hotmail— Sabeer Bhatia
11. #Orkut— Buyukkokten
12. #Wikipedia— Jimmy Wales
13. #Youtube— Steve Chen, Chad Hurley & JawedKarim
14. #Rediffmail— Ajit Balakrishnan
15. #Nimbuzz— Martin Smink & Evert Jaap Lugt
16. #Myspace— Chris Dewolfe & Tom Anderson
17. #Ibibo— Ashish Kashyap
18. #OLX— Alec Oxenford & Fabrice Grinda
19. #Skype— Niklas Zennstrom,JanusFriis & Reid Hoffman
20. #Opera— Jon Stephenson von Tetzchner & Geir lvarsoy
21. #Mozilla Firefox— Dave Hyatt & Blake Ross
22. #Blogger— Evan Willams

Some Important Portals & their Founders



1. #Google— Larry Page & Sergey Brin
2. #Facebook— Mark Zuckerberg
3. #Yahoo— David Filo & Jerry Yang
4. #Twitter— Jack Dorsey & Dick Costolo
5. #Internet— Tim Berners Lee
6. #Linkdin— Reid Hoffman, Allen Blue& Koonstantin Guericke
7. #Email— Shiva Ayyadurai
8. #Gtalk— Richard Wah kan
9. #Whats up— Laurel Kirtz
10. #Hotmail— Sabeer Bhatia
11. #Orkut— Buyukkokten
12. #Wikipedia— Jimmy Wales
13. #Youtube— Steve Chen, Chad Hurley & JawedKarim
14. #Rediffmail— Ajit Balakrishnan
15. #Nimbuzz— Martin Smink & Evert Jaap Lugt
16. #Myspace— Chris Dewolfe & Tom Anderson
17. #Ibibo— Ashish Kashyap
18. #OLX— Alec Oxenford & Fabrice Grinda
19. #Skype— Niklas Zennstrom,JanusFriis & Reid Hoffman
20. #Opera— Jon Stephenson von Tetzchner & Geir lvarsoy
21. #Mozilla Firefox— Dave Hyatt & Blake Ross
22. #Blogger— Evan Willams

Sunday 18 August 2013

Free Recharge for your mobile From Amulyam


Free Recharge for your mobile From Amulyam

The Best Website to get free recharge for Free by
1.Play Game
2.Refer Friends
3.Play Quiz
4.Attent Poll
5.Rate and Earn
6.Create Contest and Earn

Enjoy !!!

Click Here to Join Now

IE7 Issues Text Indent

                 Unfortunately IE 7 is still widespread among the users hence while theming we have to give special importance to the grea...