Hi guys, this is a detail thing but nice to solve, albeit not easy. 2 times tried and failed over various years. Not even the AI can get it right! 
My field 422 is an image field inside a user object. (user picture profile)
In this view I add a connection to the users’ pictures.
#view_265 .field_422_thumb_18 img { border-radius:50%; }
And I simply want to get out those comas in bewteen pictures.
AI tels me that it is harcoded inside the HTML. a mystery…
an aestehtic little detail, but since I am those days improving my apps…

@MichaelG can you share a screenshot of the inspector window focussed on one of those commas? I’m confident some CSS could do it…
1 Like
Thanks @BradStevens to have a look:
<div class="field_422_thumb_18">
<div class="kn-detail-body" colspan="1" style="padding-left: 0px;">
<span style="padding-left: 0px;"><span class="">
<a href="#resultados/contacto/64fb16a502cc4e0026c41f0d"><span id="64fb16a502cc4e0026c41f0d"><img src="upload://sh785Ye3sssOtMwS0tmA7MpjdbI.jpeg"></span></a>
,
<a href="#resultados/contacto/5d89f9a8a486430012e0a9ba"><span id="5d89f9a8a486430012e0a9ba"><img src="upload://vkdujizMAnOjUGDvWpx3abUmIVi.jpeg"></span></a>
,
<a href="#resultados/contacto/5d1d1550a50ab22784a52ec6"><span id="5d1d1550a50ab22784a52ec6"><img src="upload://yvsgAch6Tg99bKkOZwuPhxDY3jl.jpeg"></span></a></span></span>
</div>
</div>
I feel like I’ve done this somewhere in an app of ours but can’t find it…
Because the comma doesn’t have it’s own selector it can’t be targeted on it’s own (very happy to be corrected here) but I think we can hide it by setting the whole span forecolor to transparent - hoping this doesn’t impact the image though…
What does this untested code do?
div.field_422_thumb_18 > div.kn-detail-body > span > span {color: transparent;}
2 Likes