August 21, 2019 at 11:12 am
#66897
Theme Horse Support Team
Keymaster
Hi @kleinebrummel,
please go to the Appearance > Customizer > Additional CSS and paste below custom css code:
.navbar-brand {
padding-left: 80px;
position: relative;
}
.custom-logo-link {
width: 70px;
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
}
@media (max-width: 767px) {
.navbar-brand {
padding-left: 70px;
}
.custom-logo-link {
width: 60px;
}
}
@media (max-width: 575px) {
.navbar-brand {
padding-left: 60px;
}
.custom-logo-link {
width: 50px;
}
}
Let us know if you have any other queries regarding the theme.
Thanks