More cool effects
Rounded Corners
Everyone always wants rounded corners. This is the EASIEST way I've seen - it uses jquery.
Add these lines to your header:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js">
</script>
<script type="text/javascript" src="http://github.com/malsup/corner/raw/master/jquery.corner.js?v2.09"> </script>
Decide which div or divs that have a background color you want to be rounded.
Add these lines to just before your </body> statement:
<script type="text/javascript">
$('#rounded').corner();
</script>
And you're done!
If you want to use a class instead of an ID, change $('#rounded').corner(); to $('.rounded').corner();
And there are lots of variations - see here.
Page Updated
04.21.2010
