OK, I may be misleading you but here goes:
I believe you need to have the css portion of your code on a seperate document with the .css extention instead of .htm
I believe your html page should look like this:
HTML:
<html>
<head>
<title>your title</title>
<link rel="stylesheet" type="text/css" href="dummy.css" />
</head>
<body>
<center>
<div class="background"><img src="Headerbar.jpg"></div>
<div class="headerbartext">
<div.class ="welcome"> Welcome to DigitalPic</div>
<div class="menuright">HOME - SITE MAP - EMAIL</div>
<div class = "logobar"><img src="Images/logobar.jpg"></div>
<div class = "headerbar2"><img src="Headerbar.jpg"></div>
<div class = "backgroundleft"><img src="Background.jpg"></div>
<div class = "backgroundtopright"><img src="backgroundtopright.jpg"></div>
<div class = "backgroundbottomright"><img src="backgroundright.jpg"></div>
</center>
</body>
</html>
with the "center" tags just inside of the body tags as Criper200 stated erlier.
Notice I used:
<link rel="stylesheet" type="text/css" href="dummy.css" />
Instead of:
<link href="dummy.css" rel="stylesheet" type="text/css">
(may be the same thing???)
I'm pretty new to all of this, but I may be right because it sure works for me .....
Hope I didn't mislead you
