WPMU Custom CSS is a plugin for wordpress mu that helps bloggers to edit their theme style securely. Just like wordpress.com custom css paid upgrade.
Site admin can enable this feature for all or specific blogs (e.g. premium members).
It also integrated with our membership plugin [CMS Members MU](http://wpwave.com/plugins/cms-members/)
== Screenshots ==
Go to http://wpwave.com/wordpress-mu-buddypress/
== Frequently Asked Questions ==
= How can I limit users of plugin? =
Go to MU options page and in the bottom of the page choose specific. Now go to blogs menu, finds blog that you want, click edit blog and in misc blog actions check 'Enable Custom CSS for this blog'
= How can I integrate it with CMS Members? =
Just open the plugin file and follow instruction (Above of the file)
== Installation WordPress MU ==
While doing the installation procedure, it is recommended to go through all the steps first before viewing the output. If you don't, you'll get nasty error messages.
1. Upload `wpmu-custom-css.php` into the `/wp-content/mu-plugins` directory
---wp-content/mu-plugin/wpmu-custom-css.php
2. That's all.
Now take a look at Site Admin -> Options menu
== Upgarde to new versions ==
To upgrade WPMU Custom CSS simply delete old files and then install new version.
Description: WPMU Custom CSS is a plugin for wordpress mu that helps bloggers to change their theme style securely. Just like wordpress.com custom css paid upgrade.
Site admin can enable plugin for all of blogs or just for certain users (e.g. premium members)
<td><inputtype="hidden"name="option[custom_css_setting]"value=""/><label><inputtype="checkbox"name="option[custom_css_setting]"value="1"<?phpif($custom_css_setting)echo'checked="checked"';?>/> Enable Custom CSS for this blog</label></td>
<td><label><inputtype='radio'id="custom_css_global"name="custom_css_global"value=''<?phpif(!$custom_css_global)echo'checked="checked"';?>/> All blogs</label><br/>
If you are familiar with CSS or you have a stylesheet ready to paste, you may delete these comments and get started.
CSS (Cascading Style Sheets) is a kind of code that tells the browser how to render a web page. Here's an example:
img { border: 1px solid red; }
That line basically means \"give images a red border one pixel thick.\"
We hope you enjoy developing your custom CSS. Here are a few things to keep in mind:
You can not edit the stylesheets of your theme. Your stylesheet will be loaded after the theme stylesheets, which means that your rules can take precedence and override the theme CSS rules.
CSS comments will be stripped from your stylesheet. */
/* This is a comment. Comments begin with /* and end with */