Search
Recommended Products
Related Links


 

 

Informative Articles

10 Web Design Tips For A Professional Looking Niche Web Site
Web site design is a critical element in niche marketing. If you want to build your reputation as a Professional in your niche, you need to project a professional image from the moment your visitors reach your web site. Like it or not, first...

Avoid Graphical Overload
When designing a website, it's easy to start loading it up with graphics. While tempting, you have to resist -- otherwise, you'll end up with graphical overload. Why is that a bad thing? Here's why. It Takes Too Long to Download ...

How to Design a Search Engine Friendly Web Site
Many web site designers don't design their sites for the search engines. This is a huge mistake because they miss out on attracting lots of free traffic. Your beautifully designed web site may have cost you thousands of dollars but it still...

Top Search Engine Ranks- The Only Secret You Need- Explained: Part 1
The top three search pages- the only place you’ll be noticed they say. Unfortunately, they are correct. How can you possibly compete with millions of pages? Many represent thousands of dollars of professional search marketing and optimization per...

Why Do You Want A Good Web Design & Hosting On A Good Server...?
The answer is very simple for this question. Because a good web design attracts user and some time visitor loves the design and bookmark the same site for future visits or for future reference or might be interested in making the same web design for...

 
Google
Fun CSS Tricks You Can Use

CSS or Cascading Style Sheets allow you to implement a few neat effects on your webpages easily. You can implement these CSS effects on your site by simply copying and pasting the code.

ROLLOVER COLOR TEXT LINKS

Have your text links change color when the mouse passes over them by inserting this code into the HEAD of your document:

 <style type="text/css">

<!--

A:hover {color:red}

-->

</style>

LINKS WITH NO UNDERLINE

Remove the underline from any or all of the links on your page by putting this in the HEAD of your document:

 <style type="text/css">

<!--

A:link {text-decoration:none}

A:visited {text-decoration:none}

-->

</style>

Or, remove the underline form individual links by forming them like this:

 <a href="page.html" style="text-decoration: none">link</a>

LINKS WITH A LINE ABOVE AND BELOW THEM

This is an interesting look that works especially well as a hover attribute for your links, but can also be applied to all of your links. It will show the normal underline and a line above the link:

 <style type="text/css">

<!--

A:hover {text-decoration:overline underline}

-->

</style>

HIGHLIGHTED TEXT

Highlight important text on your


page or words you want to stand out, easily:

 <span style="background-color:yellow">highlighted text</span>

Try adding it to your link hover for a neat effect:

 <style type="text/css">

<!--

A:hover {background-color: orange}

-->

</style>

BACKGROUND IMAGE THAT ISNT TILED

This will create a background image that doesn't repeat:

 <style type="text/css">

<!--

BODY {background: #ffffff url(bg.gif) no-repeat}

-->

</style>

You can also center it, however it will be centered as the background of the entire document, not centered on the screenful:

 <style type="text/css">

<!--

BODY {background: #ffffff url(bg.gif) no-repeat center}

-->

</style>

About The Author

Dan Grossman runs http://www.websitegoodies.com where you can find over 250 hand-picked resources, articles, and tools! Dan also publishes the free weekly "WebDevPortal" newsletter for website owners! Subscribe today and get articles like this every week: subscribe@websitegoodies.com?subject=article-subscribe