Search
Recommended Sites
Related Links






   

Informative Articles

Content Management Systems (CMS): What They Are And Why We Love Them.
There is a buzz in the online community about a technology that empowers the average computer user with the ability to create and maintain their very own web presence. In the past, individuals who took interest in having and operating their own...

Establishing your Internet Presence
Introduction This article shows you what is involved to get your own website up and running. This information can help you with preparing the requirements for your website. Having well defined requirements will result in a better website while...

It's Ugly! and Other Reasons Not to Send HTML
It's Ugly! and Other Reasons Not to Send HTML By Jessica Albon Copyright 2004, The Write Exposure Have you noticed it too? This sudden change in email newsletters? Lately, newsletters I've gotten for years in plain text format have been switching...

The 4 Deadly Sins of Business Web Design
1. Designing a site with large slow loading pictures and fancy flash presentations. 99% of people surfing the internet are looking for information quickly. When you place large fancy pictures, midi music, and slow loading flash presentations...

The Lowdown: How To Create And Send HTML Email
I am frequently asked how to create and send HTML email, usually with regard to how to broadcast it to a mailing list. This article presents the various options available to you. How to create HTML email: Creating the content of an HTML...

 
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.