I just upgraded to Mayo 7.x - 2.6 from 7.x - 1.2. My pages no longer span the width of the browser page and leaves a white border. The top/bottom do span the height of the page. What changes should I make?

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

billstackhouse created an issue. See original summary.

mermentau’s picture

If you use Firefox and Firebug you can find it in css.

@media only screen and (min-width: 1025px) {
#page-wrapper {
width: 90%;
}

You can change it in there (not advised) or create a sub theme of Mayo and do it in there.

The easy way for me is to change the background from "white" in Mayo theme settings so it won't look like blank screen.

Hope this helps.

billstackhouse’s picture

Thanks. For now I've done the latter.

billstackhouse’s picture

Status: Active » Closed (works as designed)