<?
/**
Plugin for myBloggie/Bloggie Lite (myBloggie version 3.0.0 or later)
Plugin Name: CSS Add on
Version: 0.1
Download URI: http://mywebland.com/plugin/download/
Plugin Description: CSS Addon Plugin for Easy Customization - 1st Plugin
Author: Sean
Homepage: http://mywebland.com
**/
function css() {
global $template;
// Edit or add css here
$css = "
.example {
font-weight: bold;
font-style: normal;
font-size: 10px;
}";
$template->assign_vars(array(
'CSS' => $css ));
}
add_func_list("header", "css", 0, 1);
?>