Hi Ken,
You can fix this by adding the following CSS code under Appearance → Customize → Additional CSS:
.site__header {
position: sticky !important;
top: var(--wp-admin--admin-bar--height, 0px);
}
.site__header__sticky-area {
background-color: var(--kampina--color--header-bg) !important;
}
.header-is-fixed .site__header__content::after {
content: none;
}
@media screen and (max-width:600px) {
#wpadminbar {
position: fixed;
}
}
This will make the header sticky on all pages as well.
Best regards,
TigriWeb Team