how can i edit this image?

In the template Team_list_item_grid you should find this html.
Code:
<i class="material-icons">more_vert</i>
Then change the text more_vert to other icons. You can find more icons there: https://design.google.com/icons/

Also have other way to do: You can add this CSS to your EXTRA.css
Code:
.Team_GridContainer .mdl-card__menu .material-icons:before {
    content: 'ICON_NAME';
}
 
Back
Top