Location: site_wide_header
Java
html
Headers and Footers
CSS [Vendor Archive]: Vendor Guide V2 Styles
/* Specifies max height for vendor category container with name, description and images */ .category-container { max-height: 35vh; } /* Sets styling for the first image container (left side) */ @media (min-width: 768px) { .category-description-container { clip-path: polygon(100% 0%, 5%…Continue reading
CSS [Vendor Archive]: Vendor Guide V2 Styles
/* Specifies max height for vendor category container with name, description and images */ .category-container { max-height: 30vh; } /* Sets styling for the first image container (left side) */ @media (min-width: 768px) { .category-description-container { overflow: hidden; } .category-description-container…Continue reading
CSS [Vendor Archive]: Vendor Guide V2 CSS Styles
/* Specifies max height for vendor category container with name, description and images */ .category-container { max-height: 30vh; } /* Sets styling for the first image container (left side) */ @media (min-width: 768px) { .category-description-container { overflow: hidden; } .category-description-container…Continue reading
AdCritter
MemberPress: Change default values for state and country fields on registration forms
(function($) { $(document).ready(function() { // Set defaults US, TX $(‘#mepr_signup_form #mepr-address-country’).val(‘US’).change(); $(‘#mepr_signup_form #mepr-address-state’).val(‘TX’).change(); }); })(jQuery);Continue reading
WP Simple Pay: Custom Button Color
.simpay-styled .simpay-form-control .simpay-btn:not(.stripe-button-el) { background-color: #0b749d; } .simpay-styled .simpay-form-control .simpay-btn:not(.stripe-button-el):focus, .simpay-styled .simpay-form-control .simpay-btn:not(.stripe-button-el):hover { background-color: #086285; }Continue reading