Hi everyone, Thanks a lot in advance for reading my post and taking the time to try to help!
What I’m trying to do
I’m trying to hide those buttons (See screenshot) or move it to the lateral bar.
Would there be a way to use a snippet to do that? If you guys already have one I’d love to have it!
Things I have tried
I looked on the forum and reddit, saw people having the same problem but didn’t find any solution.
Thanks a lot!
1 Like
Here are a few options for the horizontal tools:
For the vertical tools, I don’t know where you would want to move them, but making them hidden except on hover is easy enough:
.canvas-controls {
opacity: 0;
}
.canvas-controls:hover {
opacity: 1;
}
2 Likes
system
Closed
4
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.