12.3. オプション A: CSS
たとえば、Dashboard ページから、最新のフォーラム投稿ボックスを非表示にしてみます。最初のステップで、その CSS パスを以下のように特定しました。
#three-scale .dashboard_bubble
同じパスを持つ 2 番目のボックスなので、+セレクターを使用する点に留意してください。これで、パスは以下のようになります。
.main_layout #three-scale .dashboard_bubble + .dashboard_bubble /* or */ .main_layout #three-scale .dashboard_bubble:nth-child(1)
display プロパティーを none に変更すると、そのボックスが非表示になります。
.main_layout #three-scale .dashboard_bubble:nth-child(1) { display: none; }