On Jan 2, 2006, at 4:41 AM, Ian Young wrote:
> Thoughts?
>

At a quick glance, I noticed this as a possible problem:

#container
{
           float: right;
        width: 100%;
        margin-left: -210px;
           background-image: url(./images/leftbar.gif);repeat-y;
}

Instead, try some variation of this (specifically the background part):

#container {
        float: right;
        width: 100%;
        margin-left: -210px;
        background: transparent url(./images/leftbar.gif) repeat-y scroll top 
left;
}

Hth,
Micky

______________________________________________________________________
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