Html / css code question - background color?

love my baby

New member
I am new to web design... be gentle.

I have finished 1st page of web design but need help w/ background color. I designed the page & sliced in photoshop. I created the html with special photoshop script.

I just left some blank slices to allow me to type some of the wording in Dreamweaver. I got the wording in Dreamweaver, but now when I put in a page background color, the background color also adds to the blank slice that has my wording. How do I prevent this?

This is the code that I added the background color with:
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" bgcolor="123456">

Thanks so much for any help!
I am using CS5 if that helps.
 
you need to change value of color,if you need silver color input code....<body bgcolor="silver"> or you need red color add code to your example:<body leftmargin="0" topmargin="0"
marginwidth="0" marginheight="0"
bgcolor="#ff0000">.....
 
Back
Top