Thank you
To amend the icon size try adding the following to the Custom CSS field of your templates parameters (Extensions -> Templates -> [YourTemplateStyle] -> Custom CSS)....
.j51news svg {
display: inline-block;
font-size: inherit;
max-width: 1.25em;
max-height: 1.25em;
overflow: visible;
vertical-align: -0.125em;
margin: 0 2px 0 4px;
}
To hide the date and category icons you can a;so add the following..
.j51news-category svg,
.j51news-date svg {
display: none;
}
.j51news-category,
.j51news-date {
margin-right: 5px;
}
Ciaran