The fixed width doesn't work in the new version. It doesn't recognize the settings in the custom.css anymore. If you force it to fixed witdth the results are very bizare...

Comments

hswong3i’s picture

Version: 6.x-2.7 » 6.x-2.x-dev
Assigned: Unassigned » hswong3i

Ooops... A good catch... Sorry that I have forget to update the custom.example.css for Contented7 (where I have done for Internet Services and Interactive Media...). The fluid width layout implementation should be correct, so there will be no new official release at this moment. Example and documentation are both updated in 6.x-2.x-dev. Here is the detail information:

/**
 * Here are some examples. For fixed width layout with 1024x768:
 *
 *   body {
 *     max-width: 980px;
 *   }
 *
 * For fixed width layout with 1280x1024:
 *
 *   body {
 *     max-width: 1240px;
 *   }
 */

Please give a try a report bug if not function :)

danny.bonte’s picture

I updated it myself and it still doesn't work. The custom css isn't recognized. If I force it (I put it in the style.css) then strange things happen (IE7 works "better" then Opera...)

hswong3i’s picture

Yes, there is a little miss in body: we need to set margin as "0 auto" for fixed width layout. I am now updating document and also this minor bug. New release is coming soon. Please feel free to report any other bugs so I can collect them and include in next stable release :)

hswong3i’s picture

Some update for the example:

/**
 * Here is a transformation example from minneli, which fix the maximum
 * width of layout based on number of columns:
 *
 *   body.no-sidebars #wrapper #container {
 *     max-width: 760px;
 *   }
 *   body.sidebar-left #wrapper #container,
 *   body.sidebar-right #wrapper #container {
 *     max-width: 980px;
 *   }
 *   body.two-sidebars #wrapper #container {
 *     max-width: 1240px;
 *   }
 *
 * In case you hope to have fixed width layout as minneli, use the below
 * code snippet for 1024x768:
 *
 *   body #wrapper #container {
 *     width: 980px;
 *   }
 */

The bugfix is already included in latest 6.x-2.x-dev.

hswong3i’s picture

Priority: Critical » Normal

Any update? Or else I will mark it as fixed :)

hswong3i’s picture

Component: Code » Documentation
Status: Active » Fixed

Should be fine right now so mark it as fixed. If still have problem please feel free to reopen it.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.