#Friend tab not centered -> fix

1 messages · Page 1 of 1 (latest)

shut willow
#

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;
}
shy jackal
#

why not just href?/genq

indigo bridge
peak ermine
#

seems good

glacial sapphire
#

how do i remove the quests tab

bronze burrow
bronze burrow
bronze burrow
glacial sapphire
#

oh wait, i ment on dms

#

is that possible?

bronze burrow
# glacial sapphire

Huh, sure, but i don't have quests tab in dm's, so i can't help you with that sorry.

glacial sapphire
#

okay

bronze burrow
#

Did you update discord?

glacial sapphire
#

to most recent?, if so yes

bronze burrow
#

Yeah, i didn't, that's why prob

#

I'll check it soon

glacial sapphire
#

ok

bronze burrow
#

I don't have the quests tab after update / restart, so i can't help you sorry.

indigo bridge
# glacial sapphire

nice experiment, buuut since u want hide then here ya go xd

    display: none;
}```
glacial sapphire
#

Ty

#

Ill see if it works when i get home

spark lantern
#

Is it possible to change the titles of these buttons?

bronze burrow
# spark lantern 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";
}