So as a general rule of thumb you shouldn’t edit, change or delete any files under /wp-content/themes
and /wp-content/plugins
… this is for several general reasons.
1. Any changes you make will be lost when either a theme or plugin is upgraded.
2. Any theme changes are theme specific, not site specific, change your theme and your theme changes will no longer be loaded.
3. Most theme and plugin authors can’t give support for code which has been edited or changed from the released version. It makes it almost impossible to work out if a problem is down to the released code or down to a change made by the user.
For WP Biographia all of the above is true but also the plugin doesn’t load wp-biographia.css
… it loads the minified version, wp-biographia.min.css
for performance reasons. So any changes you make to wp-biographia.css
, in addition to the reasons why you shouldn’t change this file above, will never be seen as this file is never loaded in a production environment.
So I’d recommend you either remove the changes you’ve made or uninstall and re-install the plugin to ensure you’re running a clean version. Then either put your custom CSS into a separate file, somewhere under your WordPress root but not inside any of the WordPress directories and use a plugin such as WP Customizer (with the disclosure that this is also one of my plugins) to load the custom CSS — or if you’re using Jetpack, use the Custom CSS feature of this plugin.
For point 2, I’m sorry but I’m still not clear what you mean. Do you have a screen-shot or link to a publicly accessible URL so I can see what you’re trying to do?
-Gary