Smashing Cool | Sitemap

Five Nicest Photoshop Tutorials...

Mental Wave Explosion Effect How to Create a Powerful Mental Wave Explosion Effect i...Read more

20 Most Beautiful Free Wordpress Theme...

20 Most Beuatiful Free Wordpress Theme (templates) free to download! Color Paper ...Read more

Magnificent Oil Paintings by Leonid Afremo...

Magnificent Oil Paintings by Leonid Afremov Source: Oil Painting Leonid Afremov...Read more

hover's Articles

Create a Text Rollover(Hover) using CSS

In this tutorial I am going to show you how to create simple text which change its color on roll over . I assume you have a basic knowledge of HTML, and know what CSS is. If you have any questions please leave comments in this post with your email and i will try to solve it. First of all open a new notepad file and make a head tag, then you need to add a style tag in order to give your text a roll over effect <head> <style type=”text/css”> Now, assume that we have a link with blue in color and we want “red” as its rollover color so we have to use this code, <head> <style type=”text/css”> a:link { color:#0000FF; } a:hover { color:#FF0000; } </style> </head> Now, if you want to change the color of visited link then