I want to make the publish button follow the page (floating/sticky). Is there any way? Thanks, The Anh
I think you want to make the div element of the Publish or Update button stick to the page.
To make a div element stick to the page you can use some solutions:
#submitdiv {position: fixed; z-index:999999}
Stickyjs:
$(document).ready(function(){
$("#sticker").sticky({topSpacing:0});});
hcSticky:
$("#submitdiv").css('z-index','999999').hcSticky({noContainer:true});
Hope this answer can help you.