so i added this css for floating items
.floating_item {position:fixed !important; left:20px !important; top:7px !important; z-index:999 !important; margin: 0px !important;}
and the items are supposed to be in the top left corner but they've never been there for me... does anybody know why? i use chrome if that's any help. thank you
not sure exactly which part of that code would be causing the issue (probably the fixed position, i think), but try this one; it's taken from the one i use and it definitely works:
.floating_item {position:absolute!important; top:7px!important; left:20px!important}
i added it and just got a floating pumpkin and it wasn't in the top left corner ;; this is so weird i don't understand why omg
maybe you have a browser extension or some other custom css that's causing a conflict? you could try disabling your browser extensions (if you have any) to see if that fixes it, and if it does then you can pinpoint which one it is (possibly adblock? that tends to mess with various subeta features for some people). if it's not an extension, you could temporarily cut and paste your custom css somewhere else and leave in only the floating item bit, see if maybe that's the issue? idk, it's also an annoying one to test because you have to actually wait until a floating item appears.
i paused ad block and just left in just the css for the floating items and they still aren't in the corner....
oh well.. it isn't too bad, im sure i catch most of the pumpkins without it but i wish i could just wrap my head around the reason why it does that lol. but seriously, thank you for the help !