Hi, I am using Blueprint 6.x-2.0-alpha and am having problems with my sub themes CSS not showing up correctly on the maintenance page.

I have followed the steps here: http://drupal.org/node/195435

1. Copied page.tpl and re named to maintenance-page.tpl.
2. In settings.php added BPSTARTER and removed minelli 'maintenance_theme' => 'BPSTARTER',

What I get is a white block spanning the entire width of the page. The logo does not show and the font family is changed.

If I remove maintenance-page.tpl from my sub theme folder, the logo shows up but the with of the container still spans the width of the page. The font still doesn't render correctly and everything is pushed to the left of the browser.

I have added custom regions to my page.tpl. Thinking this may be the cause I have copied the page.tpl from the blueprint folder and tried using that, but to no avail.

Where am I going wrong?

Thanks all.

Comments

Peng.Pif’s picture

Hi all, followed the guide in the documentation again and still couldn't get the Site-offline page to display correctly.

I have removed both maintenance-page.tpl and maintenance-page-offline.tpl from my theme folder and have added the following to my stylesheet:


body.in-maintenance {
	background-color:#FFF;
}

#page {
	width:950px;
	margin:0 auto;
	background-color:#FFF;
	font-size:75%;
	color:#222;
	background:#fff;
	font-family:"Helvetica Neue", Arial, Helvetica, sans-serif;
	padding-left:10px;
	padding-right:10px;
}

#content-content {
	margin-bottom:1em;
}

Strangley, this has got the page displaying how it should without the tpl files for maintenance mode required.

Are they not needed for this version of the theme?

Thanks,

Peng.