I want to edit the CSS File of the Installed Plugin in Wordpress for some customization of the design.
I tried to found the css file of the installed plugin by navigating through Plugins --> Installed Plugin -->Editor. In that I did'nt find the css file of that plugin instead I found only the .php extension files for the installed plugin.
So i "installed Custom CSS Editor Plugin" and i tried to override the some of the CSS property of that plugin in the custom CSS Editor but the changes i made in that custom css is not reflecting on the web page but i tried to edit the css using inspect element on the browser is working correctly.
And then i tried the same CSS property on the Style.css file for the installed Theme, it is also not reflecting on the web page.
could anyone help me to understand how to edit the css properties of the installed plugin?
thanks in advance.
!important? It's not the most desired way to style something, but sometimes it's the only way to do it...!important, you should be able to override it. The file should be in the plugin folder. Log in with ftp and go to/pluginsfolder and find it there...wp_enqueue_scriptsorwp_register_style()orwp_enqueue_style()in your plugin folder first to locate css tag or file then you need to extract exact css rule where css properties are defined from browser inspector and then need to put it in the end in your theme style.css file.