I am encountering an issue with adding a left sidebar to the Editor. I have made changes to the CSS in the “viewport” file of the Editor from
#viewport {
position: absolute;
top: 32px;
left: 0;
right: 300px;
bottom: 0;
}
to
#viewport {
position: absolute;
top: 32px;
left: 300px;
right: 300px;
bottom: 0;
// margin-left: 300px;
}
to create space for the addition of the left sidebar.
However, when I attempted to click
on the viewHelper panel on the viewport, the viewHelper did not function properly. Would you kindly assist me in identifying the cause of this issue and provide guidance on how to resolve it? Thank you very much.