More actions
Created page with "→CSS placed here will affect registered users only: →Hide special pages from anonymous users: @media screen { →Ensure that this applies only to users who are not logged in: body:not(.mw-user-login) .specialpages, body:not(.mw-user-login) .specialpage { display: none; →Hide the special pages: } }" |
(No difference)
|
Revision as of 15:25, 20 December 2024
/* CSS placed here will affect registered users only */ /* Hide special pages from anonymous users */ @media screen { /* Ensure that this applies only to users who are not logged in */ body:not(.mw-user-login) .specialpages, body:not(.mw-user-login) .specialpage { display: none; /* Hide the special pages*/ } }