Hey,
Sounds like you really are new to CSS. I think the best thing to do might be to spend an hour or so on a CSS tutorial.
Here's a link to one:
http://www.w3schools.com/css/default.asp
Good luck.
One other thing:
Notice in the header section I did attempt to put the link to the CSS file. This is the flyout_h[1] CSS file
In the head section of your code you reference three CSS files
Code:
<link rel="stylesheet" type="text/css" href="main.css" />
<link rel="stylesheet" media="all" type="text/css" href="css/flyout_h.css" />
<!--[if lte IE 6]>
<link rel="stylesheet" media="all" type="text/css" href="css/flyout_h_ie.css" />
<![endif]-->
I'm not sure what's going on with the last one. It looks like PHP to me. Am I right? Are you using PHP?
...where do I go once Ive downloaded? Im that new to CSS. This is my first encounter with it.
As you will read in the tutorial CSS can be brought-in in three ways.
1. In-line: By writing the CSS within a style attribute of an element you want to style. Eg:
Code:
Some CSS to make a span <span style="color: red;">red</span>.
2. In the Head section: By writing the CSS inside style tags in the head of your page. Eg:
Code:
<head>
<!-- other things in the head -->
<style type="text/css">
/* CSS written here */
</style>
</head>
3. In an external file: By saving the CSS in a document with the .css extension and linking to it via a link in the head. Eg:
Code:
<link rel="stylesheet" type="text/css" href="main.css" />
In your case it seems you are trying go with the third option. Save the CSS you have downloaded as filename.css and then reference it correctly. Many people save all their CSS files in a directory called css in which case your link might look something like this:
<link rel="stylesheet" type="text/css" href="
css/main.css" />
Hope that helps.
Peace,
dog
PS Spend some time on the tutorial.
Bookmarks