Background color using CSS

  • Thread starter Thread starter Peter
  • Start date Start date
P

Peter

With FP 2003, I want to turn the background of all my web pages from white
(default) to another color (green). If I follow the directions in the HELP,
I open a Normal Style Sheet. However the Format/Background option is grayed
out.

How do I do what I want to do? Thanks!
 
Use format - style - then when done link this to your html
pages by format style sheet links, "your style
sheet"...your probaly should re-read the help to make sure
you understand.

Here what a background color would look like:

body
{
font-family: Verdana, Arial, Helvetica;
background-color: rgb(0,0,0);
color: rgb(102,255,51);


Net55
(e-mail address removed)
http://www.frontpagewiz.com
-----Original Message-----
With FP 2003, I want to turn the background of all my web pages from white
(default) to another color (green). If I follow the directions in the HELP,
I open a Normal Style Sheet. However the
Format/Background option is grayed
 
Got it -thanks!

Net55 said:
Use format - style - then when done link this to your html
pages by format style sheet links, "your style
sheet"...your probaly should re-read the help to make sure
you understand.

Here what a background color would look like:

body
{
font-family: Verdana, Arial, Helvetica;
background-color: rgb(0,0,0);
color: rgb(102,255,51);


Net55
(e-mail address removed)
http://www.frontpagewiz.com

Format/Background option is grayed
 
You can also use a hex number instead of the rgb

body {background-color: #2E8B57;}

or even using a named color:

body {background-color: green;}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top