I went to Appearance > Themes > Editor and clicked on the link for header.php. I found wp_head(); as seen below. If I placed it underneath that and above ?>, I got an error message. When I placed it below ?>, Saturday is still cut off from the calendar. Thanks for helping. Any other ideas?
# PHP scripts
######################################################################
// single post comment reply script by wordpress
if ( is_singular() ) wp_enqueue_script( ‘comment-reply’ );
//wp-head hook, needed for plugins, do not delete
wp_head();
?>
.entry-content table.em-calendar td {
padding: 10px 27px !important;
}
<!– meta tags, needed for javascript –>
<meta name=”temp_url” content=”<?php echo get_bloginfo(‘template_url’); ?>” />
</head>
<?php
</head>
<?php