glenng
I thought you want to remove that icon, pls remove this css rule in above code:
.t4-section-1 .section-title::before {
background-image: none !important;
}
That's the background image declared by this rule:
div[id*="t4-section-"] .section-title-wrap .section-title:before, div[id^="t4-section-"] .section-title-wrap .section-title:before {
background-image: url("../images/arrow.png");
content: "";
display: block;
margin: auto;
margin-bottom: 1.143rem;
height: 48px;
width: 48px;
}
So you can override this css rule or replace the image: /templates/ja_findus/images/arrow.png by your own image.
Regards