Staff Module

The Staff Module has the ability to show more information about a staff member when clicked. This pops open a modal that has their picture and bio. When hovering over them, there is a "View Bio" tag that indicates this function. Sometimes websites want to use the staff module for other purposes and therefore don't want to have that indicator say "View Bio". Below is an example on how to change it to say "More Info" instead.

CSS

Add the following CSS to Page Properties > Advanced for the page:

<style>
.biobtnbg {
    visibility: hidden;
}

.biobtnbg::after {
    content: "More Info";
    visibility: visible;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px 12px;
    background-color: rgba(0,0,0,.5);
    z-index: 100;
    border-top-left-radius: 3px;
    font-size: 13px;
    text-align: center;
    line-height: 1.2;
    width:100px;
}
</style>