| Michael Lunsford 2005-10-27, 6:19 pm |
| You could search and replace the entire site. Search for "<body" and replace
with "<body bgcolor=#color".
Or, you could use CSS and create an external style sheet. That way, if you
wanted to change something site wide later on, you'd only need to change one
page to change the wholel site.
To create an external style sheet. Click "window" and "styles" click the
little "plus" in the style's pane. Select the "Tag" option, then change the
name to "body" (which you can also get out of the toggle menu in that field).
Define in new style sheet.
name our sheet something like "mystyle.css". Your CSS dialog comes up. left
hand side, click background, make whatever color you want, press okay.
the current page will likely have it, but you'll need to add the following to
all the rest of your HTML files somewhere between the <head> and </head>
<link rel="stylesheet" href="mystyle.css" type="text/css">
|