Hi,
Open up \wp-content\themes\neighborhood\includes\swift-framework\sf-content-display\sf-header.php and in line #540 you will find a line like this.
if ($id == "mini-navigation") {
after that curly braket You can put something like this..
$logo = $options['logo_upload'];
$logo_alt = get_bloginfo( 'name' );
$logo_link_url = home_url();
$retina_logo = $options['retina_logo_upload'];
$logo_output .= '<a href="'.$logo_link_url.'">'. "\n";
$logo_output .= '<img src="'.$logo.'" alt="'.$logo_alt.'" />'. "\n";
$logo_output .= '</a>'. "\n";
$menu_output .= $logo_output;
that will display the logo on the mini header, then you can adjust its styles according to your needs.
Thanks for your co-operation and patience over this period when we spent holidays, we wish that you too had a great holiday. 🙂
Let me know, what you got.
Thanks,
laranz.