GeneratePressで投稿だけにカスタムCSSを追加する方法は

Photo of author

By tacos14

GeneratePressで投稿だけにカスタムCSSを追加する方法は

GeneratePressで投稿だけにカスタムCSSを追加する方法は特別なことはなく、WordPressと同じになります。

WordPressはタグに投稿タイプを含むページに関する様々なことを識別するクラスを追加してあるので投稿に追加されるクラスはsingle-postで、CSSで使用することができます:

.single-post .inside-article .entry-title {
  text-align: center;
  color: #15b562;
}

.single-post .entry-header {
  text-align: center;
  color: #595959;
  border-bottom-width: 3px;
  border-bottom-color: #15b562;
  border-bottom-style: solid;
  padding: 10px;
}

.single-post .author-name {
  font-weight: 600;
}

参考はこちら

こちらの記事を次のSNSでシェア:

1 thought on “GeneratePressで投稿だけにカスタムCSSを追加する方法は”

  1. When I originally commented I clicked the -Notify me when new comments are added- checkbox and now each time a comment is added I get four emails with the same comment. Is there any way you can remove me from that service? Thanks!

    Reply

Leave a Comment