Hi Joe-
Thanks for reaching out, and for using the Grid One WordPress theme.
It’s true that these are tough to find, because the CSS for them is on the :before
pseudo-element on the titles. To remove it entirely, use CSS like this:
.palette-primary .entry-title:before { border: none; }
To change the color, use CSS like this:
.palette-primary .entry-title:before { border-top: 1px solid #000000; }
Replace #000000
with your preferred color code.