We would like to implement a sticky header in our website (lynchnw.com). Is there a setting for this in Miva? If not, is there a CSS way to do this?
Thank you!
Mark
Thank you!
Mark
header { position: sticky; /* Sticky position */ top: 0; /* Stick to the top */ z-index: 1000; /* Ensure it stays above other content */ }
<header> <!-- Header code here --> </header>
Comment