Claire's profile picture

Published by

published
updated

Category: SpaceHey

Removing certain interests.

I added new interests by using 

<tr>

 <td>

 <p>NameOfInterest</p>

 </td>

 <td>

 <p>PutInterestDetailsHere</p>

 </td>

</tr>

However, the unused interest I put the code into (heroes) is still there. So, I was wondering how to delete interests while at the same time keeping the new interest I added (YouTubers).


0 Kudos

Comments

Displaying 1 of 1 comments ( View all | Add Comment )

Tibe

Tibe's profile picture

maybe try the following code:
div.table-section:nth-child(7) > div:nth-child(2) > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(3){
display: none;
}


change the 3 near the end to the following numbers based on which one you wanna delete:
1 - general
2 - music
3 - movies
4 - television
5 - books
6 - heroes

alternatively, you can also just change the name of the interest box, i've found some code here, just change "name" to the name you want the interest box to have (note that you have to do it for every box, deleting the code for one will just make that one have no text), you'll also have to tinker a bit for text styling (like how font-shadow is used for offset and colouring??? huh)


Report Comment