I am customizing an HTML template, but the dimensions of the logo in the template are smaller than my logo. Despite adding my logo to the template, it is not showing up.
@media (max-width: 673px) {
#logo {
margin-left: 20px;
}
}
#header #logo h1 {
font-size: 34px;
margin: 0;
padding: 0;
line-height: 1;
font-weight: 700;
letter-spacing: 3px;
}
#header #logo h1 a,
#header #logo h1 a:hover {
color: #fff;
padding-left: 10px;
border-left: 4px solid #7c32ff;
}
#header #logo img {
padding: 0;
margin: 0;
}
@media (max-width: 768px) {
#header #logo h1 {
font-size: 28px;
}
#header #logo img {
max-height: 40px;
}
}
<section class="header-top">
<div class="container box_1170">
<div class="row align-items-center justify-content-between">
<div class="col-lg-6 col-md-6 col-sm-6">
<a href="index.html" class="logo">
<img src="img/long_logo.png" alt="">
</a>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 search-trigger">
<a href="#" class="search">
<i class="lnr lnr-magnifier" id="search"></i></a>
</a>
</div>
</div>
</div>
</section>
My logo has dimensions of 500px by 280px. I simply want to include my logo properly. Is there any way to solve this issue and make my logo display correctly?