Ayudh Sarkar
Ayudh Sarkar

Reputation: 59

can't find css file in theme editor

enter image description here I wanna highlight the menu label yellow when i am on that page but it turns black and therefore can't be seen on the navbar. I am searching for post-25875.css to edit but cannot locate it in the theme editor as well nor is it changing using additional css tab. Can someone tell me where is it located or how can i edit this css rule?

Upvotes: 1

Views: 560

Answers (2)

Wordpress Dev
Wordpress Dev

Reputation: 301

Are you using a paid theme? I think you are using paid theme .if yes you can change the styles and fonts everything from the admin dashboard. which theme is using?

Upvotes: 0

David
David

Reputation: 144

Click on "post-25875" and you will see where is the file.

Because of the "!important" this style take priority. You can try to add a more accurate selector before and keep the "!important".

#YOUR-SELECTOR .elementor-27875 [.copy the all selector.] .aux-menu-label{
    color: blue !important;
}

I hope it helps.

Upvotes: 2

Related Questions