Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Different logo image for some categories

Ok, Ive figured it out. First I’ve disabled logo upload in default bp theme by putting that code in functions.php child theme:

`function my_remove_bp_actions() {
remove_action( ‘init’, ‘bp_dtheme_add_custom_header_support’ );
}
add_action( ‘init’, ‘my_remove_bp_actions’, 9 );`

and that in css:

`#header {background:url(fani_to.png) no-repeat;}`

Then I simply used code from my first post and I’ve added to the css:

`body.category_1009 #header {
background: url(fani_to2.png) no-repeat;
}`

It works great, thanks for your help :P

Skip to toolbar