How can i create a floating button,
Author: Bernard P.
Visited 1312,
Followers 1,
Shared 0
How caqn I create a floating Button
that remains in the same position when scrolling up or down the page.
Want to create a "Back button" that is always visible
The current Back Button stays at the top of the screen with the menu bar.
I have created a button but is remains fixed to the page position and is not visible when scroll down the page
Posted on the
Hello. As far as I know, you will need CSS for this task https://codepen.io/androidcss/pen/yOopGp
There is such an object https://market.websitex5.com/en/objects/28faeb70-63d3-4214-bd05-3bee5e4739c but I don't think this is what you are looking for.
Solutions to the problem can be found here.
>> https://helpcenter.websitex5.com/en/post/253084
Author
Hi Daniel
This works out great
Thanks
Author
Hi Daniel
I have edited the box to show is a back button, all works OK except I dont know how to show mouse over when go to click the button...
<style>
#fixiert {
position: fixed;
top: 10px;
right: 10px;
background-color: #0900ff;
width: 64px;
padding: 3px;
border: 2px solid black;
border-radius: 10px;
}
#text {
font-weight: bold; background: blue; color: white;
}
</style>
<div id="fixiert"><a onclick="history.back()"><span id="text">Go Back</span>;</span></a></div>
Author
Fixed it by adding Cursor: pointer;
<style>
#fixiert {
position: fixed;
top: 10px;
right: 10px;
background-color: #0900ff;
cursor: pointer;
width: 64px;
padding: 3px;
border: 2px solid black;
border-radius: 6px;
}
#text {
font-weight: bold; background: blue; color: white;
}
</style>
<div id="fixiert"><a onclick="history.back()"><span id="text">Go Back</span>;</span></a></div>