Looking at the underlying css, any and all overlay specific code is missing. Managed to fix things by adding an additional CSS file:

css/overlay.css

/*
*
* Overlay
*
*/


/*      Structure
-------------------------------------------------------------- */

#overlay-content #top, #navigation-primary, #header-images {
  display: none;
}

Further, had to modify the css includes:

marinelli.info

stylesheets[all][] = css/comments.css
stylesheets[all][] = css/overlay.css           <---- added this line
stylesheets[all][] = css/pages/maintenance-page.css

Of course cleared caches and viola... fixed.

Its a pity there has not been a commit to this theme for a VERY long time.

Comments

polskikrol’s picture

N00b CSS mistake, the following is the correct version:

/*
*
* Overlay
*
*/


/*      Structure
-------------------------------------------------------------- */

#overlay-content #top {
  display: none;
  }
#overlay-content #navigation-primary {
  display: none;
  }
#overlay-content #header-images {
  display: none;
  }