ok thank you. I suggest you then to add the option for a “sticky” header / menu. It can easily be reached with something like:
#site-header {
position: fixed;
top: 0;
width: 100%;
padding: 20px 0 20px 0;
}
#site-content {
padding-top: 102px;
}
so in case of infinite scroll, wherever you are, you can just click on the logo to go back to the top.
-
This reply was modified 3 years, 10 months ago by danwg.