Our website utilizes CSS classes to display icons across various pages.
.alert { /* used for "alert" type messages */
background: url(images/alerts.png) no-repeat left top;
padding: 5px 0 15px 35px;
margin: 0;
}
Use:
<p id="ctl00_ctl00_ContentMessageParagraph" style="clear:both" role="alert" aria-live="assertive"
aria-atomic="true" class="alert">Thank you for using the site </p>
We are looking to replace all these icons with material-icons. Is it possible to achieve this through the stylesheet or will it be necessary to manually add
<i class="material-icons">error_outline</i>
on each page?