<style type="text/css">
body {background: #EFEFEF url(images/bggreen.jpg) repeat-x

</style>
will not work in Firefox - it should be:
<style type="text/css">
body {background: #EFEFEF url(images/bggreen.jpg) repeat-x;}
</style>
Note the curly bracket after repeat-x;
What link are you using to the extenal stylesheet? What other code follows
this link in the <head> section of the page? And what is in the <body...>
tag? Finally, is the path from the stylesheet to bggreen.htm correct? It
should be the relative path from the stylesheet to the image.
--
Ron Symonds
Microsoft MVP (Expression Web)
http://www.rxs-enterprises.org/fp
Reply only to group - emails will be deleted unread.
"Mark" <(E-Mail Removed)> wrote in message
news:62F6F336-6425-423E-96A0-(E-Mail Removed)...
> I am trying to create a style sheet where I can then change all the
> backgrounds in my web pages. I put this in a css page and then I select
> the style sheet on the web page but nothing shows. if I put the code
> below into the web page it works. I'm not sure what I'm doing wrong.
>
>
> <style type="text/css">
> body {background: #EFEFEF url(images/bggreen.jpg) repeat-x
> </style>
>
>
>
>
>
>
>
>