Please how to add a picture with a company logo to place it in front of the text COMPANY NAME? The original template code is:
< div class=“container”>
—> here place the company logo <----
< a class=“navbar-brand” href=“index.html”>COMPANY< br>NAME< /a>
< form action="#" class=“searchform order-sm-start order-lg-last”>
if I add the picture as shown below it doesn’t work because (i) the space between the logo and the text COMPANY NAME is too big and (ii) the image won’t probably resize to adjust itself to the screen size:
< div class=“container”>
< a href=“index.html”>< img src=“images/logo.jpeg” alt=“Image” width=“70” height="70"class=“img-fluid”>< /a>
< a class=“navbar-brand” href=“index.html”>COMPANY
NAME< /a>
< form action="#" class=“searchform order-sm-start order-lg-last”>
Can anyone suggest a smart way how to add this logo in front of the COMPANY NAME?
I would like to use the logo picture and keep the company name in text. However if you recommend to replace the both with one picture containing logo and text I could live with it. Just the picture would need to resize properly on different screen sizes.
Thanks a lot for help.
P.