フォーラムの管理者にはアバターの右下隅に王冠アイコンが表示され、モデレータの場合は右下隅に盾アイコンが表示されます。シールドアイコンは、コンテンツがモデレータに割り当てられたカテゴリに関連する場合にのみ表示されます。これらのアイコンを使うと、フォーラムや特定のカテゴリのコンテンツの監督を手伝ってくれる人をすぐに見分けることができます。
アイコンを非表示にしたり変更したりするには、以下の手順に従います。
- Website Toolboxアカウントにログインします。
- をクリックします 統合 メインメニューのリンク。
- をクリックします カスタムコード リンク。
- 以下に示す 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> - [保存] あなたの変更。