Skip to content

Commit

Permalink
Fix code block
Browse files Browse the repository at this point in the history
  • Loading branch information
kcristiano committed Aug 24, 2015
1 parent d7eb5a4 commit ae94f6e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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' ); ```
add_filter( 'tc_civicss_override', 'tc_civicrm_theme_css' );
```

0 comments on commit ae94f6e

Please sign in to comment.