If this is your first visit, be sure to
check out the FAQ by clicking the
link above. You may have to register
before you can post: click the register link above to proceed. To start viewing messages,
select the forum that you want to visit from the selection below.
We implemented a sticky header using custom css and a custom header. So it's definitely possible but could take some custom code solutions. I'm not sure if there a Miva setting.
It could look something like this
CSS:
Code:
header {
position: sticky; /* Sticky position */
top: 0; /* Stick to the top */
z-index: 1000; /* Ensure it stays above other content */
}
Comment