Help

Help > Forum > ユーザー > モデレーターと管理者のアバターに表示される王冠と盾のアイコンを非表示または変更する

モデレーターと管理者のアバターに表示される王冠と盾のアイコンを非表示または変更する

フォーラムの管理者にはアバターの右下隅に王冠アイコンが表示され、モデレータの場合は右下隅に盾アイコンが表示されます。シールドアイコンは、コンテンツがモデレータに割り当てられたカテゴリに関連する場合にのみ表示されます。これらのアイコンを使うと、フォーラムや特定のカテゴリのコンテンツの監督を手伝ってくれる人をすぐに見分けることができます。

アイコンを非表示にしたり変更したりするには、以下の手順に従います。

  1. Website Toolboxアカウントにログインします。
  2. をクリックします 統合 メインメニューのリンク。
  3. をクリックします カスタムコード リンク。
  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.