Search
Recommended Sites
Related Links






Valid XHTML 1.0 Transitional

Valid CSS!
   

Informative Articles

Fast and easy Website Design Tips
Hi did you no that internet web pages have come full cercal, well do you remember the old days when a website was designed by code? You no by actually typing HTML, the web pages looked simple and the only ones that had lots of images was the big...

How To Find A Web Designer
Website Design Info - Part 4 Finding A Web Designer by Richard F. Hill © 2005 Richard F. Hill - All Rights reserved This is the fourth of eight articles about website design. Our discussion will deal with some of the issues which need to...

"How To Keep Your Visitors 10 Times Longer On Your Web Site"
Everyone knows this: the longer your visitors stay on your web site, the more likely they are to buy something. The longer they stay, the more trust they develop in your business, the more comfortable they will become ordering from you. So, how...

How to Make Money Even When Visitors Leave Your Site
orry to have to tell you this but not everybody who comes to your site is going to like it. No matter how much you put into designing it, no matter how good your content is, there's someone out there who's just not gonna dig it. Personalities...

Some tips for the Travel Agent: Making a Great web site
These days, the travel agency is more dependent on having a well-designed, easy-to-use web site that is updated frequently. But who can afford to keep an IT person on staff? A CMS (Content Management Solution) does help keep your website content...

 
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





Sign up for PayPal and start accepting credit card payments instantly.