Adding a logo to the header

Hello!

I wanted to add a logo to the header.
As of now I just found a way to replace the header-text with a header-logo - but I want to add the (small) logo on the right side.
Any input on how to achieve this?

Tank you very much in advance!

Best Regards,
David

Hello everyone!

I found out myself how to do that.
For anyone needing this information:

I edited header.php and added after the div “site-branding”:

<div class="header-logo-addition col-md-2 col-sm-2 col-xs-12">
<img src="link/to/logo.gif"/>
</div>

Furthermore I changed the site-branding div accrodingly:
<div class="site-branding col-md-10 col-sm-10 col-xs-12">

To the style.css I added:

.header-logo-addition{
	float:right;
	margin-top: 20px;
	margin-bottom: 20px;
	text-align:center;
}

Now my logo works just perfect for all screen sizes.

Hi David,

Awesome great to see you got that resolved.

Please note you are making changes in the theme files therefore you have to make these changes again after theme updation as changes made in the theme files get lost on theme updation so we recommend you to make changes using Child Theme.

Please advise if you have more questions.

Have a fantastic day!

Cheers,
Movin