« Web, HTML, Tech Forum

How to remove sections "Who I'd like to meet:" and "Links"?

Title.

I'd like to remove these two sections from my profile but do not know how.


Report Topic

1 Reply

Reply by Dustin

posted

The following code needs to go within your <style></style> brackets in your "About Me" section:

This code will hide your "Who I'd Like To Meet" section

.blurbs .inner .section:nth-of-type(2) {
display: none;
}

This code will hide your "Links" section

.table-section:nth-last-child(1) {
  display: none;
}


Report Reply