Search
Recommended Products
Related Links
tramadol online
house for rent in Warsaw
find billboard outdoor advertising companies , media.
www.loadsnap.com/
post workout smoothie recipe - link .
mexican food? sure, try this recipe .
get apple seeds .

 

 

Informative Articles

Can Your Web Site Win The Tour De France?
It's over. After three grueling weeks of racing, Lance Armstrong has won what some call the world's most difficult sporting event, the Tour De France. The US newspapers gave the event a cursory notation the Monday after the finish and showed a...

How to Build a Basic CSS Layout
Designing without tables by using CSS layouts is fast becoming the new standard on the Web because of the benefits mentioned in my previous article. Web browsers used these days are now able to render web pages proficiently. In this article I will...

How to buy a laptop - buyers guide notes
Laptops are always a difficult thing to buy because there is such a wide choice and so many different prices and then there's the technical specifications to get your head around.. nightmare! So here's some ideas from the technical side of things,...

More on Vector Graphics
According to the blog entitled “Vector Graphics” which was posted by Neil last December 2, 2004 at www.eightlines.com, the author mentioned that he just found this program called InkScape which appears to be an open source vector drawing program. ...

Starting Cascading Style Sheets
Cascading Style Sheets (CSS) are being used more and more by web designers to layout and format web pages. Although they have been around for several years now many designers have avoided them due to browser incompatibility. Although...

 
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


Crashing On Couches To Talk To Musicians
Jason Crane of <em>The Jazz Session</em> interview podcast is touring the U.S. via Greyhound bus.

Around The Jazz Internet: May 18, 2012
Ten albums for newbies, the hated Cabaret Card and composer/arranger Gil Evans' centennial.

The Harmonica-Playing Baron Of Belgium
Whistling guitarist and harmonica master Toots Thielemans has played in everything from Charlie Parker's band to commercials for Old Spice. In his childhood home of Brussels — really, throughout his homeland — the celebration of his 90th birthday is on.


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