A:
Tried the first option:
background-color: transparent;
border-collapse: collapse;
border-spacing: 0;
}
/* 03 Base CSS
-------------------------------------------------------------- */
html {
height: 100%;
}
body {
-moz-font-smoothing: antialiased;
-webkit-font-smoothing: antialiased;
background: #ffffff;
color: #000000;
But that didn't take.
So then I tried option#2:
add_action( 'init', 'cd_add_editor_styles' );
/**
* Apply theme's stylesheet to the visual editor.
*
* @uses add_editor_style() Links a stylesheet to visual editor
* @uses get_stylesheet_uri() Returns URI of theme stylesheet
*/
function cd_add_editor_styles() {
add_editor_style( get_stylesheet_uri() );
}
:-\
What am I missing?