How can I remove this text with css? [ad_1]I tried using tr.fee #text {display:none} but it isn’t working. [ad_2] Previous ArticleShow tags on post archive cards? Next ArticleHow to get to Reusable blocks in Gutenberg?
tr.fee is fine, but there’s no element within that that has an ID of “text”, so that css selector is selecting nothing.Try “tr.fee th {display: none;} tr.fee span {display: block;}”
tr.fee is fine, but there’s no element within that that has an ID of “text”, so that css selector is selecting nothing.
Try “tr.fee th {display: none;} tr.fee span {display: block;}”