Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Support angelo_nwl

    (@angelo_nwl)

    you can try this snippet in your theme style.css

    .entry-content table.em-calendar td {
      padding: 10px 27px !important;
    }
    Thread Starter jetevans

    (@jetevans)

    Thank you. I added that snippet of code to my theme’s style.css, but it did not change the appearance of the calendar. The Saturday events are still cut off: https://riverbendbc.org/weeklyschedule. Are there other suggestions?

    Plugin Support angelo_nwl

    (@angelo_nwl)

    it works when I add it using google chrome > inspect element; how about if you try to add it in your theme header.php below wp_head() ?

    Thread Starter jetevans

    (@jetevans)

    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

    Plugin Support angelo_nwl

    (@angelo_nwl)

    you need something like

    <style>
    .entry-content table.em-calendar td {
    padding: 10px 27px !important;
    }
    </style>
    Thread Starter jetevans

    (@jetevans)

    Thank you! You are a genius!

    I have this problem again. Events have been posted to the calendar for February, March, and April. The Saturday events show up fine for the month of February, but the Saturday Events for March are off of the calendar; therefore, the right pointed arrow is missing on the March calendar, so it cannot be clicked on to see the April calendar for which events have been entered. The code above worked for the February. What code can I enter so it’ll work for March? Thank you. Here is the URL with the problem:
    https://riverbendbc.org/weeklyschedule

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Saturday Cut Off on Calendar’ is closed to new replies.