lumenlearning / candela

Candela stack wordpress only
Other
6 stars 6 forks source link

Candela theme (& others?): All H3s unnecessarily centered #58

Open xolotl opened 9 years ago

xolotl commented 9 years ago

All H3s are now centered, which makes them hard to parse on a regular page. I think what may have happened is that there was a move to center H3s in decorative boxes that was applied to all H3s.

There is this:

media="all"
.bcc-box h3:first-child {
  text-align: center;
  margin: -2% -3% 15px;
  color: #ffffff;
  padding: 15px 0 15px;
}

And this:

media="screen, print"
h3 {
  text-align: center;
  font-size: 1em;
  font-weight: bold;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  letter-spacing: none;
  word-spacing: none;
  page-break-after: avoid;
  hyphens: none;
  -webkit-hyphens: none;
}