#**Puts the fav button back to the left
1 messages ยท Page 1 of 1 (latest)
ye
oh didn't even notice it switched there
normal gifs already have it at its NORMAL left
discord just decided to put it in the right specifically for the gif search/picker for whatever reason
also you shouldn't use *= for this one since they're at the start of the class [class^=result_] [class^=favButton_]
(also quotes aren't necessary for just text and underscores)
ahhh alralr
[class=result_] [class=favButton] {
right: unset;
}```
here's one that works if the first one didn't
that will not work
the one sent at the top works
slightly better version that's prob like <1ms more efficient though:
[class^=result_] [class^=favButton_] {
right: unset;
}```
did for me
nvm im just an idiot and dont take notice of stuff quickly ๐ญ
lol
use this
adding a slight left margin of 5px makes it look a bit more neat also. this is how i have it [class*='result_'] [class*='favButton'] { right: unset; margin-left: 5px; }