Jump Links

.wpsJumpLinks{ padding-top: 65px; /* Adjust the value depending on the desired offset */ margin-top: -65px; /* Make sure the value is the same as padding-top, but with a negative sign */ scroll-margin-top: 65px; /* Adjust the value depending on the…Continue reading

Phoenix – Featured Neighborhoods add-on

/* Featured Neighborhood add-on – Style: Grid with CTA on side (Phoenix) == Start */ .iul_display_grid_1{display:table;width:100%;} .iul_display_grid_cell a img{margin-bottom:0;} .iul_display_grid_cell{display:table-cell;vertical-align:middle;} .iul_display_grid_cell h2 {color:#fff;color:var(–main-primary-color-text-light);} .iul_display_grid_cell:nth-child(1){background-color:#111;background-color:var(–main-primary-color);width:25%;text-align:center;color:#ffffff;color:var(–main-primary-color-text-light);padding:30px 20px;} .iul_display_grid_cell:nth-child(2){width:75%;} .iul_display_grid_cell:nth-child(1) .cta_button{padding:5px 30px;margin:0;border:1px solid #fff;border-color: var(–main-primary-color-text-light); color:#fff;color:var(–main-primary-color-text-light);font-size:16px;border-radius:0px;display:inline-block;text-decoration:none;} .iul_display_grid_1 .ao_fn_gs_gridstandard { display: -ms-grid; display: grid;…Continue reading

Move Admin Bar to the Bottom

body {margin-top: -28px;padding-bottom: 28px;} body.admin-bar #wphead {padding-top: 0;} body.admin-bar #footer {padding-bottom: 28px;} #wpadminbar { top: auto !important;bottom: 0;} #wpadminbar .menupop .ab-sub-wrapper { bottom: 32px; }Continue reading

Remove the Key Text on Conversational Forms

/* Remove the Key Text from Conversational Forms Original doc link: https://wpforms.com/developers/how-to-change-the-key-text-on-conversational-forms/ For support, please visit: https://www.facebook.com/groups/wpformsvip */ #wpforms-conversational-form-page div[class^=’wpforms-field-‘] li:not(.wpforms-image-choices-item) label:before, #wpforms-conversational-form-page div[class*=’ wpforms-field-‘] li:not(.wpforms-image-choices-item) label:before, #wpforms-conversational-form-page div[class^=’wpforms-field-‘] li:not(.wpforms-image-choices-item):not(.wpforms-selected) label:hover:before, #wpforms-conversational-form-page div[class*=’ wpforms-field-‘] li:not(.wpforms-image-choices-item):not(.wpforms-selected) label:hover:before, #wpforms-conversational-form-page div[class^=’wpforms-field-‘] li:not(.wpforms-image-choices-item):not(.wpforms-selected) label.wpforms-field-item-hover:before,…Continue reading

Centering a form

/* Center the form inside a container Original doc link: https://wpforms.com/developers/how-to-center-a-form/ For support, please visit: https://www.facebook.com/groups/wpformsvip */ .wpforms-container.wpf-center { margin: 0 auto !important; /* Adjust the width in the next 2 lines as your site needs */ max-width: 500px !important;…Continue reading