Skip to content

Instantly share code, notes, and snippets.

@kwcjr
Created February 9, 2024 04:37
Show Gist options
  • Save kwcjr/5d962f7a5f9ab9fe6c83f4d88abc4fcf to your computer and use it in GitHub Desktop.
Save kwcjr/5d962f7a5f9ab9fe6c83f4d88abc4fcf to your computer and use it in GitHub Desktop.
Make the tinyMCE toolbars "Sticky"
/**
* Snippet Action: Make the tinyMCE toolbars "Sticky".
* Snippet Type: MainWP Custom Dashboard CSS snippet.
* Snippet Author: MainWP.com
*/
#wp-content-editor-tools,
#mceu_25 {
position: sticky;
top:0;
width:100%;
z-index:100;
}
#mceu_25 {
top: 55px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment