Help > Forum > ユーザー > モデレーターと管理者のアバターに表示されるクラウンとシールドのアイコンを非表示または変更する

モデレーターと管理者のアバターに表示されるクラウンとシールドのアイコンを非表示または変更する

フォーラムの管理者用のアバターの右下隅にクラウンアイコンが表示され、モデレータの右下隅にシールドアイコンが表示されます。シールドアイコンは、モデレーターが割り当てられているカテゴリに関連するコンテンツがある場合にのみ、モデレーターに表示されます。これらのアイコンは、フォーラムや特定のカテゴリのコンテンツを監督するのに役立つユーザーをすばやく特定するのに役立ちます。

以下の手順に従って、アイコンを非表示にしたり変更したりできます。

  1. Web サイト Toolbox アカウントにログインします。
  2. をクリックします。 統合する リンク。
  3. 内にある 統合する メニューで、 HTML リンク。
  4. 以下に示す 1 つ以上の CSS コードを フォーラムヘッドタグ HTML コード テキストボックス。

    両方のアイコンを非表示にするには:

    <style>
      .image-wrapper > i.moderator_user, .image-wrapper > i.admin_user {
        display: none !important;
      }
    </style>
    

    管理者アイコンを非表示にするには、次の手順を実行します。

    <style>
      .image-wrapper > i.admin_user {
        display: none !important;
      }
    </style>
    

    モデレータアイコンを非表示にするには:

    <style>
      .image-wrapper > i.moderator_user {
        display: none !important;
      }
    </style>
    

    管理者アイコンを変更するには、次の手順に従います。

    <style>
      .image-wrapper > i.admin_user:before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background-image: url(URL/ADDRESS OF ICON GES HERE);
        background-size: 80%;
        background-position: center;
        background-repeat: no-repeat;
      }
    </style>
    

    モデレータアイコンを変更するには:

    <style>
      .image-wrapper > i.moderator_user:before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background-image: url(URL/ADDRESS OF ICON GES HERE);
        background-size: 80%;
        background-position: center;
        background-repeat: no-repeat;
      }
    </style>
    
  5. 保存 あなたの変更。


If you still need help, please contact us.