How to make changes to style.php [closed]

To remove the style without modifying the original code you can try add this to your style.css

.comment.yes {
    background: none !important;
}

This will add a new style for that class. The !important part tells the browser not to let another style over-ride that line.