Style Snippets

Hide Free Estimate Callout

Paste in Advanced Head
To remove from entire site you must check Site Management > Exclude from Free Estimate Callouts

<style>
p.clear.page_bottom_estimate_callout {
   display: none;
}
</style>

Reset New Meet The Team Styling

Add this code to make the new meet the team module look more like the old one, or partially implement it to re-style only some portions. See comments for help.

/* MTT reset */
.team_member {
    width:120px; /* set image width - default is 150px */
}
.team_member_image span {
    padding-top:130%; /* Change image proportions: square (default) = 100%, landscape < 100%, portrait > 100% */ 
    /* remove grayscale filter */
    -webkit-filter:none;
    filter:none;
}
.team_member_image:hover span {
    /* add fade hover effect */
    opacity:0.8;
    /* remove zoom hover effect */
    transform: none;
}