Go here: https://github.com/ctlcltd/e2-sat-editor/releases
...and download the user-manual.zip file. It's a small collection of html files. Or just download index.html, attached in this post.
Wrong, displayed output: (note the overlap)
Moderator: trava90






Code: Select all
@-moz-document domain("e2sateditor.com") {
#side {
left: auto !important; /* Equivalent to inset-inline-start:auto */
}
}


I tried the version proposed by adoxa, to which I added a line of CSS code. It seems to work - and it's much shorter:back2themoon wrote: ↑2025-10-07, 17:51After fighting with AI for two hours (I won't make this a habit... it was literally 120 minutes) I got an almost complete fix, at least from the user's perspective.
Code: Select all
@-moz-document domain("e2sateditor.com") {
#side{
inset: 0px 0px 60px 0px !important;
inset-inline-start: auto !important;
}
}

Thank you too, tellu-white. That fixes all issues of this particular case.tellu-white wrote: ↑2025-10-07, 18:45I tried the version proposed by adoxa, to which I added a line of CSS code. It seems to work - and it's much shorter.

You're Welcome, back2themoon!back2themoon wrote: ↑2025-10-07, 19:15Thank you too, tellu-white. That fixes all issues of this particular case.tellu-white wrote: ↑2025-10-07, 18:45I tried the version proposed by adoxa, to which I added a line of CSS code. It seems to work - and it's much shorter.
And yet again proves that multi-million "AI" remains way off.


Code: Select all
@-moz-document url-prefix("https://e2sateditor.com/help/") {
#side{
inset: 0px 0px 60px 0px !important;
inset-inline-start: auto !important;
}
}

Good point, thanks.tellu-white wrote: ↑2025-10-08, 00:59...apply the CSS change only to the "help" pages instead of the entire domain...

I do not see any user-manual zip file on that page. All I see are e2-sat-editor zip files.back2themoon wrote: ↑2025-10-06, 15:21Hello,
Go here: https://github.com/ctlcltd/e2-sat-editor/releases
...and download the user-manual.zip file. It's a small collection of html files. Or just download index.html, attached in this post.



Thanks for this. This particular issue seems still present on PM 34. Userstyle workaround works fine.



Parsing code for the new CSS props might need to be adjusted if that's the case.