Our Twitter Feed app doesn’t fetch the blue checkmark by default.
To display it, add this code to the Custom CSS field on the Style tab of your widget’s settings:
.eapps-twitter-feed-header-user-info-name > a:after,
.eapps-twitter-feed-posts-item-user-name > a:after {
content: '';
display: inline-block;
width: 16px;
height: 16px;
background-size: contain;
background-repeat: no-repeat;
background-position: center;
background-image: url('https://cdn.worldvectorlogo.com/logos/twitter-verified-badge.svg');
vertical-align: bottom;
}
.eapps-twitter-feed-posts-item-user-name > a:after {
width: 13px;
height: 13px;
margin-left: 1px;
}
.eapps-twitter-feed-header-user-info-name > a,
.eapps-twitter-feed-posts-item-user-name > a {
display: inline;
}