#**Puts the fav button back to the left

1 messages ยท Page 1 of 1 (latest)

queen timber
#

is that in the gif picker?

tacit bone
#

ye

queen timber
#

oh didn't even notice it switched there

tacit bone
#

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

queen timber
#

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)

tacit bone
#

ahhh alralr

strong tusk
#
[class=result_] [class=favButton] {
    right: unset;
}```
#

here's one that works if the first one didn't

queen timber
#

the one sent at the top works
slightly better version that's prob like <1ms more efficient though:

[class^=result_] [class^=favButton_] {
  right: unset;
}```
strong tusk
#

nvm im just an idiot and dont take notice of stuff quickly ๐Ÿ˜ญ

slender dome
#

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; }