ALT CAT's profile picture

Published by

published
updated

Category: Web, HTML, Tech

dont know how to remove boxes in profile :/

so.. i'm new to this site and teaching myself html and css


basically i have no idea how to edit out sections of my layout. for the record: i have looked online for other tutorials but i can't find any that are specific enough / make sense to me

for example: 
i want to hide the "heroes" section from my interests, but whoops i am.. unsure how to do that

I know i can hide interests as a whole by using something like: ".interests{ 
display: none; 

}"

 but i'm not sure where to put that even if i wanted to, or if i can hide just one section, although i have seen other profiles do it 


0 Kudos

Comments

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

fairycake444 ౨ৎ⋆˚。⋆

fairycake444 ౨ৎ⋆˚。⋆'s profile picture

Use this code and put the number of the section you want to hide

/* Hides a section*/
.details-table> tbody > tr:nth-child(type_number_here) {
visibility: hidden;
}


Report Comment



I used this code exactly to hide "Heroes"

/* Hides 'heroes' section*/
.details-table> tbody > tr:nth-child(6) {
visibility: hidden;
}

by fairycake444 ౨ৎ⋆˚。⋆; ; Report

ohmygosh! thank you thank you thank you!!! :D

by ALT CAT; ; Report

you're welcome :))

by fairycake444 ౨ৎ⋆˚。⋆; ; Report