hey zig,
I never heard of "font-weight: none". Probably you meant "font-weight: normal" or "font-weight: bold".
Unless you have a CSS Editor, to set up your external stylesheet just copy and past your styles into Notepad and save the file as "whatever.css"
Unless you have a CSS Editor, to edit it, you'll have to change the .css extension to "whatever.txt" and then back to "whatever.css" when you're done editing.
Also, forget about the tags <style> and </style> along with the comment marks inside them, they're not needed in your external stylesheet.
I don't forsee any probs with a scrollable <div>. I'd want to take a look at the finished product before making a final judjment.
Put that file in whatever directory you want to put it in, I always put in the directory where my pages that use it are located if possible.
Use this to call the stylesheet into your html file, the "href="whatever.css" is assuming you have the stylesheet in the same directory:
<link rel="stylesheet" type="text/css" href="whatever.css">
Put it in the <head> section of your html file.
When you do use <style> tags, do it like this:
<style type="text/css">
<!--
.whatever { blah: yadda; ipso: facto; hey: now; }
-->
</style>
There's some posts around here about CSS. If you search CSS, you could find them and maybe pick up something.
Edited by maleman, 14 February 2005 - 12:52 AM.