Skip to content

Single Post

Laurel edited this page Nov 9, 2022 · 6 revisions

Index

Make single post title smaller

.single .entry-title {
 font-size: 1.6em;
}

@media only screen and (min-width: 600px) {
  .single .entry-title {
    font-size: 1.8em;
  }
}

@media only screen and (min-width: 782px) {
  .single .entry-title {
    font-size: 2.0em;
  }
}

@media only screen and (min-width: 1168px) {
  .single .entry-title {
    font-size: 2.4em;
  }
}


Make category smaller

.single .entry-header .cat-links {
  font-size: 0.7rem;
}
Clone this wiki locally