Themes: CSS theme: xf_openWeb
Posted by: studioCOn 2006/5/14 20:43:11 6664 reads
Finally, xf_openWeb is packed for download.
Read more information and download theme on xoopsfactory.
michael
Very nice! You always design great themes!
Dana
you tha man
Hi Michael, I really like your themes and now I want this one for my forum site alohaspirit, but I want it in a fixed size of about 90% and I saw (when trying this one on my forum) that center blocks display beneath left blocks)
My users can choose (in the future) for their own theme, so I can't change my module templates if this means that other themes display not well anymore.
My questions : what is the easiest way to change the theme to 'fixed' size of 90%?
In order to display center blocks properly must I change every module template(table) to <100% output?
Where can I change colours?
@all, thanks much for feedback
@svaha,
the easiest way to set the theme to 90% is to replace:
div#page {
background-color: #fff;
max-width: 1012px;
width: expression(document.body.clientWidth > 1012? "1012px": "auto" );
}
with the following:
div#page {
background-color: #fff;
width: 90%;
}
Quote:
must I change every module template(table) to <100% output?