Gorticus' brain

Brain and brain. What is brain?!?

OL and UL Alignment in Octopress

| Comments

The default Octopress style does not indent OL and UL lists, i.e.,

  • flight of bees
  • lodge of beavers
  • rabble of butterflies
  • murder of crows

I dislike this very much, and prefer

  • flight of bees
  • lodge of beavers
  • rabble of butterflies
  • murder of crows

After a quick search, Octopress Issue #417 provided the the simple solution: add

Custom css in `sass/custom/_styles.scss`Issue #417
1
2
3
4
5
article {
  ol, ul {
    padding-left: 3em;
  }
}

or any other custom css to sass/custom/_styles.scss.

Comments