Link modification
# 🤝help
w
I want to change the color of the link it is only showing white which doesn't match my background hover is there but I need a color
b
check the hyperlinks
in the stylesheets
b
you can adjust this using CSS
navigate to the advanced styler, which will generate a custom stylesheet for you
q
and add these to the end of that CSS file to test: if the link or email address is from the bot
Copy code
css
a {
  color: green;
}
if it's from the user
Copy code
css
.bpw-from-user .bpw-chat-bubble .bpw-chat-bubble-content a{
color: blue;
}
https://cdn.discordapp.com/attachments/1232051163139149837/1232153709388238899/image.png?ex=66286c10&is=66271a90&hm=a0b5defbc3dccfb77905079d4d41a9215fa29c588b00e3e4365772109556f857&
f
🦸‍♂️🦾💎
2 Views