newbie at css/html

Any problem with HTML can be discussed here.
Post Reply
catnip40
Posts: 2
Joined: Wed Mar 22, 2006 12:39 am

newbie at css/html

Post by catnip40 »

how do replace the scroll bar with a new one i alredy got one made but dont kno how to applie it


skyline_music
Posts: 31
Joined: Thu Mar 23, 2006 6:51 am

Post by skyline_music »

if you mean you already have a css file, put this link (replacing the directory structure with your own) in the <HEAD> </HEAD> area of your HTML.

<link href="css_files/main_css_file.css" rel="stylesheet" type="text/css">


If you do not have a stylesheet,

make a text file and format the text thusly:

link {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #FFFFFF;
text-decoration: none;
}

this example would make all links size 10px, Verdana font, white, without an underline.

If you have your scrollbar info in that kind of format, put it all into the one text file and link as mentioned at the start of this post. Good luck! :twisted:
kaos_frack
Posts: 504
Joined: Sat May 07, 2005 8:03 am
Contact:

Re: newbie at css/html

Post by kaos_frack »

catnip40 wrote:how do replace the scroll bar with a new one i alredy got one made but dont kno how to applie it
you don't actually replace it
you just apply styles
like scrollbar-color{whatever;}
Post Reply