Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
/* First, hide the actions section by default (handles both old browsers and view source case) */
#cosmos-page-header {
display: none !important;
}
/* Then, only in browsers that support has(), re-enable it specifically for edit source */
@supports selector(:has(*)) {
#cosmos-page-header:has(#ca-editsource) {
display: flex !important;
}
}
/* Hide categories */
#cosmos-toolbar {
display: none !important;
}
/* Add padding to bottom */
#cosmos-footerContent-footerLinks {
padding-bottom: 10px;
}
