posted 1738104215
Forum: Web, HTML, Tech
View Topics View Profile
Report Topic
Sort Replies: Oldest Newest Newest Oldest
posted 1738246815 updated 1738248411
I think you could try something like this:
<style>.table-section:last-child .details-table td:first-child img { display: none;}.table-section:last-child .details-table td:first-child a { display: flex; align-items: center; text-decoration: none; gap: 4px;}.table-section:last-child .details-table td:first-child a::before { content: ''; display: inline-block; width: 16px; height: 16px; background-size: contain; background-repeat: no-repeat;}/* Tumblr */.table-section:last-child .details-table td:first-child a[href*="tumblr.com"]::before { background-image: url("https://your-custom-icon-link.png");}/* Other social Icons ... */</style>
Permalink Report Reply
posted 1738256996
That worked perfectly! thank you!