解決済み
Question

カテゴリ内に表示される記事リンクテキストの文字色変更

  • c cecillia
  • テーマカラーの文字色を白にしているため、カテゴリーページに進むと、各記事のアイキャッチしたのテキストが白背景と重なり見えなくなってしまいます。どこの設定をさわればいいのかわからないので、調べたのですが、CSSでの変更になりますか?

    問題となるページ : https://wrench-shift.com/category/black-work-experience/
    • WP 6.7.1
    • PHP 8.3.x
    • JIN:R 1.4.0
    • Xserver
    • GoogleChrome
    • macOS 12 Monterey
    2025/08/05 17:58
  • tsu_

    こんにちは!
    URLありがとうございます!

    以下のコードでいかがでしょうか?
    .o--postlist-inner .a--post-title, .a--post-date, .a--post-category {
    color: #000!important;
    }

    ※文字ではなく白背景部分を変えるのもいいかもしれません↓
    .d--material-design .d--postlist-square .c--post-link, .d--material-design .d--postlist-rectangle .c--post-link, .d--material-design .d--postlist-slider .c--post-link {
    background-color: #000;
    }

    お手数おかけしますが、ご確認よろしくお願いいたします。

    2025/08/06 22:00
  • c
    cecillia

    ありがとうございます!

    2025/08/07 17:28
CLOSE