Skip to content

Instantly share code, notes, and snippets.

@DevTarakanova
Last active November 13, 2018 20:18
Show Gist options
  • Save DevTarakanova/225c08c1645e18d5df7e09df4f7a13a8 to your computer and use it in GitHub Desktop.
Save DevTarakanova/225c08c1645e18d5df7e09df4f7a13a8 to your computer and use it in GitHub Desktop.
Add style for button to WSVC
.custom_button {
line-height: 35px;
padding: 0 20px;
border-radius: 4px;
background: #954b52;
color: black;
display: inline-block;
text-decoration: none;
}
function wpdocs_theme_add_editor_styles() {
add_editor_style( 'custom-editor-style.css' );
}
add_action( 'admin_init', 'wpdocs_theme_add_editor_styles' );
*******************************************
//Create nev file 'custom-editor-style.css'
*******************************************
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment