Archived topic
Call button
5 replies · Started by Brett on August 28, 2018
Is there a way to add a phone icon/button to the bottom of mobile site that is sticky, and shows on every page? Thank you in advance!
Hi there,
You can add your markup to the GP Before Footer Hook, example:
<a class="hide-on-desktop hide-on-tablet mobile-button" href="tel: 123 456 789"><img src="my-image.jpg" alt="Alt Name" height="40" width="40"></a>
Then some CSS to fix it in place:
.mobile-button {
position: fixed;
bottom: 40px;
left: 50%;
transform: translatex(-50%);
}
Documentation on Hooks Element
https://docs.generatepress.com/article/hooks-element-overview/
Works! Do you have a way to center horizontally as well?
I updated the code above to horizontally center.
Thank you! Much appreciated.
You're welcome :)