|
c1sissy -> RE: Change Table Cell on Mouseover (9/15/2004 10:39:50)
|
quote:
The First sheet would have vary basic layouts and the second would have all the bells and whistles. So the second style sheet would only be used when the browser can handle it. Am I on the right track? You are correct on this. When I mention basics, it would be your fonts, etc.. your basic link styles, Think of the most basic styles that you have on your sheet right now that would work in basically any browser. That would be on the linked style sheet. Now your bells and whistles would be your imported style sheet. I would not put anything in regards to positioning in the basic style sheet as that is one of the things that browsers have a problem with. If you would like a good course on css p, let me know and I'll send you a link via pm to it. You really don't need to tear your site apart at all. Just a matter of looking at what you have and making a very basic linked style (here is an example body {
font-family: Arial, serif, "Times New Roman";
}
h1 {
font-size: 155%;
}
a:link {
color: #06c;
}
a:visited {
color: #000;
} sheet, and rename the bells and whistles one to import.css (or whatever you wish to name it. And if I am remembering correctly you need to have quotation marks around the url for the imported style sheet. Here is an example taken right from one of my pages right now. <style type="text/css">
<!--@import url("xhmlssiimport.css");
--></style>
</head> as you can see, it goes right above the </head> element. I hope that this helps you out
|
|
|
|