View Full Version : CSS Layout


sirenreceiver
08-01-2006, 12:20 PM
I went to a website and downloaded a layuot...They gave me all these pics...what am I supposed to do with them..

they gave me this to work with...

body{
scrollbar-arrow-color:#E4C8FC;scrollbar-track-color:#FCFAFF;
scrollbar-face-color:#FCFAFF;scrollbar-highlight-color:#ACD1FD;
scrollbar-3dlight-color:#FCFAFF;scrollbar-darkshadow-color:#FCFAFF;
scrollbar-shadow-color:#ACD1FD;background-color:#FFFFFF;
background-image:url('tidus_4x2.gif');background-attachment: fixed;
}
table,td,font,p,i,body,div
{color:#88D4FE; font-family:trebuchet ms; font-size:10px;}
body}
A
{ cursor:move;font-family:century gothic;}
a:link,a:active
{ text-decoration: none; color:#D7A9F8;font-weight:; }
a:visited
{ text-decoration:none; color:#D7A9F8;font-weight:bold;}
a:hover {color:#A2E4FF;text-decoration: underline; font-weight:none;}
.head { filter: blur(strength=30); margin: 1px; height:1px; text-align:right;font-size: 10px;font-family: arial; color:#E19FF5; font-weight:bold; letter-spacing:4px; }
input,textarea {border:#99E1FF 1pt solid; background:; color:#000000; font-family:tahoma; font-size:9px;}

and like 13 pictures...

help?

Arwen
08-01-2006, 01:22 PM
Do you have an index.html page? Cos the code you posted is CSS. If you have an index page, there are 2 ways to include your stylesheet:

1. Copy the code and insert it between the <head> tags on your index page like this:

<style type="text/css">

code here

</style>

or you can create a new file paste the code into it and save it as style.css, then go to your index page and insert this code between the <head> tags:

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

Make sure your style.css and index.html are in the same directory. :)