diff --git a/README.md b/README.md index 08097f1..35d1f31 100644 --- a/README.md +++ b/README.md @@ -12,11 +12,12 @@ Version 1.2 is based on the civicrm.css from the 4.6 release Starting in V 1.1 you can now override this plugins CSS with a custom one from your theme. This makes use of the tc_civicss_override filter Example Code: - -```function tc_civicrm_theme_css( ) { +``` +function tc_civicrm_theme_css( ) { $tc_css = get_bloginfo( 'stylesheet_directory' ) .'/includes/civicrm.css'; return $tc_css; } -add_filter( 'tc_civicss_override', 'tc_civicrm_theme_css' ); ``` \ No newline at end of file +add_filter( 'tc_civicss_override', 'tc_civicrm_theme_css' ); +```