3 collumns inside header for Dazzling WordPress theme

Hello
Thank you for the theme, I like it. I’m working on it but I have a question. Can we add a third div responsive in header next to the menu ?
Like this instance.

http://www.hostingpics.net/viewer.php?id=969337menu.png

Thx for the reply

Sorry for my English.

Hi Noel,

I hope you are well today.

You can add the third picture div in header next to the menu as shown in your shared screenshot by overwriting the header.php file Dazzling theme in its child theme and editing the last lines of code in the header.php file as following.

Before Editing:

				<?php endif; // header image was removed (again) ?>

			</div>
				<?php dazzling_header_menu(); ?>
		</div>
	</nav><!-- .site-navigation -->

After Editing:

				<?php endif; // header image was removed (again) ?>

			</div>
			<div id="header-picture">Third Div</div>
				<?php dazzling_header_menu(); ?>
		</div>
	</nav><!-- .site-navigation --> 

Also you have to add the following CSS code in the style.css file of your child theme.

#header-picture{
float: right;
}
.navbar .collapse {
float: right;
}

Best Regards,
Movin