When you have your html file open in Frontpage and you are editing it, there is a link to your CSS right in the header, just make sure that the CSS is saved in the same file as the html and link it like this:
<link rel="stylesheet" href="style.css" type="text/css" charset="utf-8" />
or whatever you name your stylesheet put after the href=
As I said you have to make sure that they are saved in the same file on your computer, but as long as they are both in the same folder and you put the link in your html as I have shown, then you will be able to jump from your css to your html and see your changes...just make your changes in the css file, but then you have to save them (not save as...just save) and then you can jump back to the html that is attached to it and you will immediately see the changes you made to the coding.
|