Add the ability to add css to your existing style sheet.
An easy way to modify the css globally on your site.
As an admin you are able to edit the css from the front end.
Remember that this plugin depends on standard WordPress hooks to operate. If the
active theme does not have wp_head()
in its code, this plugin is ineffective.
Remedy: add the code <?php wp_head(); ?>
to the theme files in the <head>
section.
This plugin will only operate for Cascading Style Sheets code. The custom CSS is escaped
and outputted within a set of <style>
tags, preventing bots from abusing the functionality
to inject malicious code. Allowing users to inject JavaScript into the blog’s header
is a security vulnerability, thus this plugin does not permit it.
Minor bug fixes
Completely rewritten