Handy
Tip: CSS is short for Cascading Style Sheets. CSS is used
to add style to your web site design such as font or background
colors. Many webmasters believe Cascading Style Sheets are a more
efficient website tool than HTML tags because it gives you more
control over your web site design by allowing you to position
elements exactly how you intend.
|
Bookmark
This Page
Ready
Made CSS Scripts
Feel free to copy
and paste the following CSS scripts for your website. If you would like
to learn more about the power of working with Cascading Stylesheets, take
our comprehensive CSS
tutorial. Learn how to code CSS to overlap text and images, position
elements relatively or absolutely and much more. Webdesigning has never
been so easy with the power of CSS.
If you find
these CSS scripts useful please 
Color
scrollbar script:
Add the following script within your head tag and change the color attributes
to suit.
No
underline on links:
Add this code to your page, within the <head></head>tags.
It does work as well in the homestead editor under the insert html button.
Background
Styles:
Have you ever made a nice background graphic and not wanted it to tile
into many pictures all over your webpage? You can change your background
attributes so that it tiles in one row vertically or horizontally across
your page.
You can see a working example of this script at http://www.hypergurl.com/backattributes.html
Here is the exact script I used with a simple little 100 x 40 graphic,
to help give you the idea on how to impliment it:
<STYLE TYPE="text/css">
<!-- BODY {background-image: url(balletgirl.gif); background-repeat:
repeat-y} --></STYLE>
Script for changing linked text color on mouseover:
This only works with the IE browsers. Add this code within your <head>
tags. To keep the underline on your links, replace "none" with "underline"
Change "YourColor" with the hexidecimal number of color required.
Script for changing text color on mouseover
You can change the color of your text, be it a full paragraph or just
one word by applying the code below to any valid html tag. The code is
applied inline to your text where you want the text mouseover color applied.
Run your mouse over
this sentence to see an example.
|