I retrieved a Bootstrap template and I am trying to modify it a little bit in order to add a logo over a background image (back_img.jpg in my code example), in the top left of it. I insist on the fact that I really want the logo to be covering part of the background picture. Moreover, I have already seen some solutions to do it, but as far as possible, I would like to change the least possible the source code of the template.
Here is the code :
<!-- Page Header -->
<header class="masthead" style="background-image: url('img/back_img.jpg')">
<div class="overlay"></div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-10 mx-auto">
<div class="site-heading">
<h1><font style="font-family: American Typewriter", color="#FAFF5A">Title here</font></h1>
</div>
</div>
</div>
</div>
<header/>