chatgpt-advanced
chatgpt-advanced copied to clipboard
Appearance/Design Bug
Hi.
I'm using the extension. I opened the ChatGPT page today and this is the look/design. The "things" that should be at the bottom are at the top. Disabling the extension fixes it.
Please fix this bug, thanks for the extension.
Same error here, it appears to be a bug with new ChatGPT upgrade?
Same error here, it appears to be a bug with new ChatGPT upgrade?
I understand that there is nothing I can do as a user, does the extension need to be updated?
i have also facing same error
Upon inspecting the page, I found the current HTML markup can be fixed in the following 2 ways:
- Add
flex-col
to thediv
withrole="presentation"
, or - Attach
absolute
to the WebChatGPTdiv
container.
Revised Markup Outcome:
<div role="presentation" class="flex flex-col h-full">
<div class="absolute bottom-0 left-0 w-full border-t md:border-t-0 .... />
Upon inspecting the page, I found the current HTML markup can be fixed in the following 2 ways:
- Add
flex-col
to thediv
withrole="presentation"
, or- Attach
absolute
to the WebChatGPTdiv
container.Revised Markup Outcome:
<div role="presentation" class="flex flex-col h-full">
<div class="absolute bottom-0 left-0 w-full border-t md:border-t-0 .... />
But the modification is temporary, how can I inject my changes to the plugin?
The problem was solved after one day, at least for me. 👍