Is there a way to move a left or right docked view handle from the middle to the top of the view?
(That is, on the left or right docks.)
Yes.
Try adding this to your Perspective | Styles | stylesheet.css:
.docked-view .toggle-wrapper {
justify-content: flex-start;
}
You can figure out some of these things using the browser's Developer Tools. Hit F12 and use the inspect button to select the element you wish to modify.
1 Like
Perfect! Thank you.
I haven't done anything with css styles yet, but I'm signed up for the ICC virtual class. After that, I'll be dangerous!