Tuesday, October 25, 2005, 10:36:39 AM, Denise Hartmann wrote:
> It works in IE, Firefox, but it is off a few pixels in Opera.

Without too much investigation I'm guessing you're running into Opera's use
of padding instead of margin on BODY.  Replace:

body {
background-color: #224444;
background-image:url(images/gradbg1200.jpg);
background-repeat:repeat-y;
background-position: 0px 0px;
margin: 0px 0px 0px 0px;
}

with (some shorthand):

body {
background:#244 url(images/gradbg1200.jpg) 0 0 repeat-y;
margin:0;
padding:0;
}

FYI, Opera 9 is overhauling its default CSS values, one of which is to use
margin on BODY like most other browsers.

Steve
-- 
http://mrclay.org/ : http://thefrenchhorns.com/

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to