ben-g
2/13/2017 - 9:18 PM

A mobile pop up button that will take user automatically to a feature such as a form, etc.

A mobile pop up button that will take user automatically to a feature such as a form, etc.

<!-- Place this anchor somewhere near or at the bottom of the page's container.  
Or an inner container. The form container id should also be placed in the container of the
area being linked to. -->

<a href="#form-container" class="btn-fixed" style="color: #ffffff; text-decoration: none;">Request Info</a>
.btn-fixed {
    position: fixed;
    bottom: 0;
    right: 20px;
    background-color: #de3d47;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 20px;
    z-index: 10;
}
@media only screen and (min-width: 992px) {
.btn-fixed {display: none;}}