|
Β |
Line 1: |
Line 1: |
| /* ==== Force Sidebar to Stay Pinned and Visible (Vector 2022) ==== */
| |
|
| |
|
| /* Expand main content area to make room for pinned sidebar */
| |
| .vector-body {
| |
| Β Β margin-left: 12.25em !important;
| |
| }
| |
|
| |
| /* Force sidebar to be visible */
| |
| .vector-sidebar-container {
| |
| Β Β transform: none !important;
| |
| Β Β visibility: visible !important;
| |
| Β Β position: static !important;
| |
| }
| |
|
| |
| /* Cover both pinned and unpinned states */
| |
| .vector-pinned .vector-sidebar-container,
| |
| .vector-unpinned .vector-sidebar-container {
| |
| Β Β transform: none !important;
| |
| Β Β visibility: visible !important;
| |
| Β Β position: static !important;
| |
| }
| |
|
| |
| /* Hide the pin/unpin toggle button */
| |
| .vector-pinned-toggle-button {
| |
| Β Β display: none !important;
| |
| }
| |
|
| |
| /* Hide the hamburger (β°) main menu toggle button */
| |
| .vector-main-menu-toggle {
| |
| Β Β display: none !important;
| |
| }
| |
|
| |
| /* Optional: Hide the right sidebar toggle if not used */
| |
| .vector-page-tools-pinned-container,
| |
| .vector-page-tools-toggle {
| |
| Β Β display: none !important;
| |
| }
| |