Maximize Blogger Editor Width with Stylebot CSS
Stylebot
The idea is based on previous post Use Stylish extension to modify Blogger editor width
I had an idea today. When I focus on writing, I don't really care about those things on the right sidebar.
Why not just hide them. This way my editing area can be a bit bigger again.
After some use of the F12 tool.
Final result
www.blogger.com/blog/*/edit/*
/* 左栏撑满 */
.fmzcZd {
padding-right: 20px;
}
/* 编辑区最大化 */
.a89Sje {
max-width: 100%;
}
/* 右栏隐藏 */
.vW7mGd {
display: none;
}
The effect is as follows
Tail
Actually for me, it's still not perfect.
Because the toolbar still has a ...
But the actual width is enough
Github
========



