Usual Egg's profile picture

Published by

published
updated

Category: Web, HTML, Tech

How to hide *just* the links section

I've been seeing a lot of empty link sections on everyone's profiles so here's the code to hide that section if you want

<style>
    .table-section + .table-section {
        display: none;
    }
</style>


22 Kudos