Posts

Showing posts from July 7, 2011

Google Apps supports the following browsers

Beginning August 1, 2011, we’ll support the current and previous major releases of Chrome, Firefox, Internet Explorer and Safari on a rolling basis. Each time a new version is released, we’ll begin supporting that version and stop supporting the third-oldest version. Learn more about supported browsers for Google Apps in the Google blog post .  

How To Add Animated Favicon In Blogger?

Image
Favicon is actually the icon that appears next to your Website URL in the browser address bar. A favicon is usually your blog logo. There are many free services that help to create favicons for you but most of these services use still images. I have used an animated favicon for my blog as you can see in your address bar. It actually consists of a logo and then my blog title as text. The image and text together makes a more beautiful combination. So lets jump at the tutorial and create an attractive cute favicon for your blog, Go To favicongenerator And just at the bottom of the page upload your blog logo or any icon you wish to make as your favicon and also add your blog title as the scrolling text. You will find all the help at favicongenerator     3.  Hit the Generate Favicon Button and you will be taken to this page, Here you will see many images just right click the animated one and save it to your computer.      4. Now upload the image to your Picasa album by reading

Move text when mouse over in Css3

Image
Move text when mouse over <style type="text/css"> .mbt-nudge { -moz-transition: all 0.4s ease-out 0s; -webkit-transition: all 0.4s ease-out 0s; } .mbt-nudge:hover { margin-left: 55px; padding-left: 5px; } </style>

Opacity effect With Image Rotation

Image
<style type="text/css"> img.opacity { -moz-transform: rotate(5deg); -moz-transition: all 0.5s ease-out 0s; -webkit-transform: rotate(5deg); -webkit-transition: all 0.5s ease-out 0s; margin-left: 50px; opacity: 0.5; } img.opacity:hover { opacity: 1; margin-left: 0px; -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg); -moz-box-shadow: 1px 1px 4px #000; -webkit-box-shadow: 1px 1px 4px #000; box-shadow: 1px 1px 4px #000; } </style>

Rotate css3

Image
Cascading Style Sheets (CSS) is the language of Web design, and the next generation of CSS design properties are just chomping at the bit to be released. Today i show you how to rotate text in Css3 <div class="current-date"> <span class="day">31</span> <span class="month">July</span> <span class="year">2009</span> </div> <style type="text/css"> .cureent-date { background-color: red; float: right; margin-left: 10px; padding: 45px 5px 0; position: relative; } .current-date .day { font-size: 45px; left: 5px; line-height: 45px; position: absolute; top: 0; } .current-date .month { font-size: 25px; text-transform: uppercase; } .current-date .year { -moz-transform: rotate(-90deg); -webkit-transform: rotate(-90deg); display: block; position: absolute; right: -5px; top: 15px;