milohuang / reverie

Reverie is a versatile HTML5 responsive WordPress framework based on ZURB's Foundation.
http://theakiba.com/reverie/
MIT License
918 stars 196 forks source link

<Header> CSS #273

Open ghost opened 10 years ago

ghost commented 10 years ago

Zhen,

Can you please verify the source of this CSS?

header { width: 100%; margin-left: auto; margin-right: auto; margin-top: 0; margin-bottom: 0; max-width: 71.25rem; *zoom: 1; padding-bottom: 0.625rem; }

header .logo { position: relative; padding-left: 0.9375rem; padding-right: 0.9375rem; width: 25%; margin-left: auto; margin-right: auto; float: none; float: left; }

It does not appear to be Foundation 5, but that of Reverie? Is this the case? The reason I ask is because I am trying to use

and go full-width and its also messing up my logo. Any chance you can clarify? I don't really see .logo being used in your demo.

tnog commented 10 years ago

If you look in 'scss/app.scss' you'll find the source:


header {
  @include grid-row;

  .logo  { @include grid-column($columns:3, $center:true); }
  padding-bottom: em-calc(10px);

}

It's not part of Foundation but theme specific.