Xaraya_Classic, layout.css, div#xc-outer-wrapper

"Adem" <[email protected]> Fri, 8 Sep 2006 23:33:09 +0000 (UTC)
Newsgroups gmane.comp.cms.xaraya.ui
Organization Xaraya
Message-ID <[email protected]>
Hi,

Xaraya_Classic is great but it turned out to be tougher nut than I
thought.

Some people here have higher res monitors and are complaining that the
theme does not occupy the screen sufficiently.

I have finally nailed it, there is 'max-width: 1280px;' in
'div#xc-outer-wrapper' which --unless I am missing something-- does
nothing useful other than restrict larger res people to a smaller strip
down the middle.

I have commented it out, and checked in various resolutions from
800x600 to 1920x1200 and they all appear to be fine.

One other thing: 'div#xc-outer-wrapper' occurs in 2 places in
layout.css, which is confusing and unnecessary --imho--, I suggest we
combine the two together. IOW, 'div#xc-outer-wrapper' should look like
this:

div#xc-outer-wrapper {
    padding: 25px 25px 15px 25px;
    position:relative;
    min-width: 740px;
    /*max-width: 1280px;*/
    margin: 0 auto;
    text-align: left;
}

Do I need to report thi somewhere else too?