skip to Main Content

I have tried this CSS, But not working, still showing.

.wpnotif_admin_conf .wpnotif_sts_logo {
    display: none !important;
}

Now what I can use to hide this Class from the Admin Area?

2

Answers


  1. Use a comma if these are 2 classes.

    .wpnotif_admin_conf, .wpnotif_sts_logo {
        display: none !important;
    }
    
    Login or Signup to reply.
  2. It depends on where you are adding the CSS. As this is a backend page, adding the CSS on style.css or additional CSS in Customizer won’t work.

    You need to add a custom CSS for the admin and mention the CSS there. Check admin_enqueue_scripts.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search