Hey there Top Notch Themers,

Great theme as usual! I am, however, experiencing one issue on the default site maintenance page. The name of the site is appearing on a separate line from the site logo and in a standard
style instead of the style used for the site name on all other pages. As a result the site name looks pretty funky and is appearing somewhat outside of the box it is meant to appear in.

It appears to be just a CSS issue, but I've had some trouble trying to fix it. Any suggestions for CSS that would solve this and make the maintenance page look more uniform?

Thanks!

--Ben

Comments

BenK’s picture

Note sure why part of my original post is in huge bold letters.... that was not intended! :-)

jeremycaldwell’s picture

Status: Active » Fixed

Hi Ben, add this bit of CSS to your local.css file and that will do the trick:

.in-maintenance #header-middle #logo {
  float: left;
  margin-right: 10px;
}

This change will be in the next release of the theme.

jeremycaldwell’s picture

Actually here's a much better version of the CSS changes needed:

.in-maintenance #header-middle #logo {
  float: left;
  margin-right: 10px;
}

.in-maintenance #header-middle #logo {
  display: inline;
  margin: 0 14px 10px 0;
}

.in-maintenance #header-middle  h1 {
  color: #525252;
  display: inline;
  font-family: Myriad Pro, Myriad Web Pro Regular, Lucida Grande, Geneva, Trebuchet MS, sans-serif;
  font-size: 2.1em;
  font-weight: normal;
  letter-spacing: 3px;
  position: relative;
  text-transform: uppercase;
  top: 3px;
  white-space: nowrap;
}

.in-maintenance #header-middle  h1 a {
  color: #525252;
  text-decoration: none;
}

Status: Fixed » Closed (fixed)

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