<style> .details-table td:first-child {display:none;} </style>
-Hide "Interests" heading (Removes All Profile Headings)
<style>
.heading{ display: none;}
</style>
-Remove table background in "Interests" Section. Also hides blue borders. Change from "none" to any color to suit your liking. "None" by default is transparent.
<style>
body {--lighter-blue: none;--lightest-blue: none;
}
</style>
« Web, HTML, Tech Forum
Removing certain elements from the "Interests" section. (Codes Inside)
18 Replies
Reply by Lilith
posted
Is there a way to remove certain sections from Interests? (Like the TV or Heroes sections)
Also, how do you hide "Who i'd like to meet" section?
Thanks in advance!
Reply by Ðꧧï©åtêÐ ©ø®þ§ê
posted
Reply by JMoney
posted
Reply by JMoney
posted
Reply by MrNickBaby
posted
Reply by ➳ нℴℓℓყ
posted
updated
Reply by Sky Desperado
posted
Reply by LRG x3
posted
Reply by CryingMinotaur
posted
Reply by Div
posted
This worked for me for hiding the interest setion, parts of it, or just the links section for those that want those specific parts hidden.
Here's the code that worked for me:
<style>
/* Hide Interests Section (ALL) */
.table-section:nth-child(6) {
display: none;
}
-------->
/* Hide Interest Heading */
div.col.w-40.left > div:nth-child(7) > div.heading {
display: none;
}
/* Hide General */
div.table-section:nth-child(6) > div:nth-child(2) > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1),
div.table-section:nth-child(7) > div:nth-child(2) > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) {
display: none;
}
/* Hide Music */
div.table-section:nth-child(6) > div:nth-child(2) > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(2),
div.table-section:nth-child(7) > div:nth-child(2) > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(2) {
display: none;
}
/* Hide Movies */
div.table-section:nth-child(6) > div:nth-child(2) > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(3),
div.table-section:nth-child(7) > div:nth-child(2) > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(3) {
display: none;
}
/* Hide Television */
div.table-section:nth-child(6) > div:nth-child(2) > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(4),
div.table-section:nth-child(7) > div:nth-child(2) > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(4) {
display: none;
}
/* Hide Books */
div.table-section:nth-child(6) > div:nth-child(2) > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(5),
div.table-section:nth-child(7) > div:nth-child(2) > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(5) {
display: none;
}
/* Hide Heroes */
div.table-section:nth-child(6) > div:nth-child(2) > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(6),
div.table-section:nth-child(7) > div:nth-child(2) > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(6) {
display: none;
}
-------->
/* Hide Links Section */
.table-section:nth-child(7) {
display: none;
}
</style>
Reply by Starz
posted
Reply by Xx.grim_reaper.xX
posted
Reply by bunny
posted
Reply by rain !
posted
Reply by Pink Jellies
posted
Reply by ash<3
posted
is there a way to hide the interest headings without removing the link headings?
Reply by K3N
posted
Reply by ???
posted