#Friend tab not centered -> fix
1 messages · Page 1 of 1 (latest)
This doesn't get rid of the small list elements which include the nitro and shop anchors which have some margin so it's not really centered (at least for me)
My approach:
li:has(a[data-list-item-id*="shop"], a[data-list-item-id*="nitro"]) {
display: none !important;
}
why not just href?/genq
display: none;
}
div.sectionDivider__35e86 {
margin-top: 0;
}```
just remove top margin instead of using hard selectors
seems good
how do i remove the quests tab
/* Removes quest tab on discovery page */
.navItem__551b0:nth-child(3) {
display: none;
}
Well that's gross
?
thank you!
Your welcome
Huh, sure, but i don't have quests tab in dm's, so i can't help you with that sorry.
okay
Did you update discord?
to most recent?, if so yes
ok
I don't have the quests tab after update / restart, so i can't help you sorry.
nice experiment, buuut since u want hide then here ya go xd
display: none;
}```
thank you!, it works
Is it possible to change the titles of these buttons?
/* Buttons in order */
[href="/channels/@me"] .name__20a53,
[href="/message-requests"] .name__20a53,
[href="/store"] .overflow_b0dfc2,
[href="/shop"] .name__20a53,
[href="/quest-home"] .name__20a53 {
font-size: 0; /* Hide original name */
}
.name__20a53:before, /* Add styling for the new names */
.overflow_b0dfc2:before { /* /store requires overflow */
font-size: 16px;
line-height: 20px;
font-weight: 500;
flex: 0 1 auto;
}
/* New names */
[href="/channels/@me"] .name__20a53:before {
content: "New_Friends_Tab_Name";
}
[href="/message-requests"] .name__20a53:before {
content: "New_Message_Requests_Name";
}
[href="/store"] .overflow_b0dfc2:before {
content: "New_Store_Name";
}
[href="/shop"] .name__20a53:before {
content: "New_Shop_Name";
}
[href="/quest-home"] .name__20a53:before {
content: "New_Quest_Home_Name";
}