« Web, HTML, Tech Forum

Removing certain elements from the "Interests" section. (Codes Inside)

Posted by S C U M

posted
updated

Forum: Web, HTML, Tech


Don't know if these have been found or posted yet. But figured somebody could use these!


-Hide labels (General, Music, Movies, etc,.)


<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>


Report Topic

18 Replies

Sort 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!


Report Reply

Reply by Ðꧧï©åtêÐ ©ø®þ§ê

posted

Yes, would very much like to know how to hide the heroes section.


Report Reply

Reply by JMoney

posted

Reply by JMoney

posted

Anyway to leave general only?


Report Reply

Reply by MrNickBaby

posted

Do you know the css code that hides the div.class link table?


Report Reply

Reply by ➳ нℴℓℓყ

posted
updated

Thank you very much(:


Report Reply

Reply by Sky Desperado

posted

Thanks lol. I was trying myspace style and it wasn't working xD


Report Reply

Reply by LRG x3

posted

super helpful thank you! newbie here


Report Reply

Reply by rudymhernandez

posted

Yes there is check out here


Report Reply

Reply by Oliver Gray

posted

Many thanks for your support. mapquest directions


Report Reply

Reply by CryingMinotaur

posted

You are a saint!!!! 


Report Reply

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>


Report Reply

Reply by Starz

posted

Any way to add another section, video gamez for example?


Report Reply

Reply by Xx.grim_reaper.xX

posted

how do you change the color of intrests box background?


Report Reply

Reply by bunny

posted

Yay thanks <3


Report Reply

Reply by rain !

posted

is there a way to hide all of the content inside of "who i'd like to meet"


Report Reply

Reply by Pink Jellies

posted

Thanks a ton! :D


Report Reply

Reply by ash<3

posted

is there a way to hide the interest headings without removing the link headings?


Report Reply