Home / Admin / Custom Style Icons for Rating field
Duplicate Snippet

Embed Snippet on Your Site

Custom Style Icons for Rating field

This snippet will customize your rating icons in the Rating field

10+
Code Preview
css
div.wpforms-container-full form#wpforms-form-1000  .wpforms-field-rating svg {
    fill: transparent !important;
    stroke: #448ccb !important;
    stroke-width: 20px !important;
    opacity: 1 !important;
}
div.wpforms-container-full form#wpforms-form-1000  .wpforms-field-rating-item svg:hover {
    fill: #448ccb !important;
}
div.wpforms-container-full form#wpforms-form-1000 .wpforms-field-rating-item.selected svg {
    fill: #448ccb !important;
    transform: none !important;
}
 
div.wpforms-container-full form#wpforms-form-1000 .wpforms-field-rating-item.hover svg {
    transform: none !important;
}

Comments

Add a Comment