I wanted to share this code with others who may be wanting to change the “List a Property” button verbiage in RentalHive. The translate plugin they recommend did not work for me. I was able to change the button text to “Join the Directory” - You would copy and paste this code into Customize > Additional CSS and save. Thanks!
/* Hide the original "List a Property" text */
.hp-menu__item--listing-submit span {
font-size: 0 !important;
}
/* Add the new "Join the Directory" text */
.hp-menu__item--listing-submit span:after {
content: "Join the Directory";
font-size: 16px !important; /* Adjust this to match your theme's font size */
display: inline-block;
}