I have a store here
*please excuse the dust. I am trying to get the logo to the left in header, but it looks like there is a div.header::before but it isn't in my css and I am assuming built in the cms somewhere. I have tried position: absolute; and also float: left; with no luck.
<div class="logo">
{% if store.logo %}
<a href="/"><img src="{{ store.logo }}" /></a>
{% else %}
<span>{{ store.name }}</span>
{% endif %}
</div>
.container {
height: 100%;
width: 100%;
margin:0;
padding:0;
border:0;
overflow: hidden;
position: fixed;
}
.header {
width: 100%;
margin:0;
padding:0;
background-color: #333;
display: grid;
grid-template-columns: repeat(3, 1fr);
border-bottom: 3px solid #DAC896;
}
.logo {
position: absolute;
float: left;
}