ankit / stylebot

Change the appearance of the web instantly
https://stylebot.dev/
MIT License
1.38k stars 204 forks source link

[Bug]The menu is not displayed for me #740

Open mrstar55 opened 1 year ago

mrstar55 commented 1 year ago

In chrome , When I click on the icon and open Stylebot, the side menu is not displayed for some sites

20dka commented 1 year ago

I had this issue after just enabling the extension, but after pressing Ctrl+R on the page in question, the side menu appeared and worked as expected

JonasKalkman commented 1 year ago

Some sites have elements that simply fall on top of the menu. A solution could be to add "position: absolute" to the sylebot menu div?

Volbla commented 1 year ago

A solution could be to add "position: absolute" to the sylebot menu div?

I had already noticed that the menu could fly off the screen sometimes when i edited a page's body layout. I discovered the "order: -1;" property which can force an element to be the first one positioned, meaning it won't be pushed away by other elements anymore. But "position: absolute;" is definitely a simpler solution. That means the menu will always be positioned relative to 0x0, which seems to already be the intention.