Ciao a tutti, ho un problema con una navbar, praticamente ho questo codice che mi blocca la barra,

codice:
$fixed_header = get_theme_mod('header_sticky', true);
if(!empty($fixed_header) and $fixed_header) {
	$fixed_header_class = 'header-nav-fixed';
} else {
	$fixed_header_class = '';
}
ora vorrei poter aggiungere sulla sinistra un logo e un'email quando la barra si blocca, quindi quando viene aggiunta la classe header-nav-fixed, come posso fare? Grazie