I have made this modification per a community form your team ran a suggestion. In the photo the logo resolutions needs to be fixed, however, my issue is with the following divider line not being in the correct place after the logo. It broke when I added the normal & Sticky logo code.
Demo-one-page-agency-html
<div class="body">
<header id="header" data-plugin-options="{'stickyEnabled': true, 'stickyEnableOnBoxed': true, 'stickyEnableOnMobile': true, 'stickyStartAtElement': '#header', 'stickySetTop': '0', 'stickyChangeLogo': false}">
<div class="header-body">
<div class="header-container container-fluid px-0">
<div class="header-row">
<div class="header-column custom-divider-1">
<div class="header-row">
<div class="header-logo px-1">
<a href="demo-one-page-agency.html">
<img alt="Porto" width="101" height="32" src="img/demos/one-page-agency/logo.png" />
<img alt="Porto" width="101" height="32" src="img/demos/one-page-agency/logo1.png" />
</a>
</div>
</div>
</div>
Custom CSS
#header .header-logo img {
position: absolute;
-webkit-transition: opacity 0.3s ease;
-moz-transition: opacity 0.3s ease;
transition: opacity 0.3s ease;
margin-top: -20px !important;
}
#header .header-logo .logo-normal {
opacity: 1;
}
#header .header-logo .logo-sticky {
opacity: 0;
}
.sticky-header-active #header .header-logo .logo-normal {
opacity: 0;
}
.sticky-header-active #header .header-logo .logo-sticky {
opacity: 1;
}