Replies: 0
Hi,
I have changed child theme as follows, but it is not changing tagline and SI place.
What should I do to have it done as before last CZR update.
Thanks
/* === 12 === redefine tagline + si icons size */
//==============================================
add_filter('czr_fn_tagline_class', 'my_tagline_class');
function my_tagline_class(){
return 'span10';
}
add_filter('czr_fn_social_header_block_class', 'my_si_class', 20);
function my_si_class(){
return 'span2';
}