registerguard / bulldog

The official 2013 registerguard.com theme.
http://registerguard.com
1 stars 1 forks source link

Deck class name and logic changes. #73

Closed mhulse closed 11 years ago

mhulse commented 11 years ago
.deck1, .deck2, .deck3, .deck4, .deck5, .deck6

... become:

.sh6, .sh5, .sh4, .sh3, .sh2, .sh1

Reasoning:

Makes more sense logically to match an h2 or .h2 heading class to a .sh3 subheading. Before this change, the decks were using a reverse numbering system when compared to headings. Also, I changed "deck" to "sh" (SubHead) as h* and sh* seem to fit better.

mhulse commented 11 years ago

Btw, the h*, .h* and .sh* classes could mostly be combined, like:

h1, .h1, .sh1 { ... }
h2, .h2, .sh2 { ... }
...
mhulse commented 11 years ago

Done. Still need to clean up the Caché templates (remove old class names) but things are better now. Done.