After my previous question was closed, I realized that the provided answer did not meet my needs. I am actually looking to hide not just the HTML text Received
, but the entire row containing 0 <3 Received
. A simple display: none;
would suffice for this task. However, I am struggling to identify the correct CSS selector, as the elements in the list are only differentiated by the HTML text in the center, such as "Received" or "Given". Since this HTML text cannot be targeted with CSS due to it not being a valid selector, I am unsure what to do next.
Please note that I require a CSS-only solution, if possible. The relevant HTML code can be found on the mobile page of mathbymiles.com/u.
https://i.sstatic.net/9WK0w.png
Here is the relevant HTML snippet:
<div id="ember69" class="user-stat ember-view"><span class="value">
<span class="number">0</span>
</span>
<span class="label">
<svg class="fa d-icon d-icon-heart svg-icon svg-string" xmlns="http://www.w3.org/2000/svg"><use xlink:href="#heart"></use></svg>
Received
</span>
</div>