Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Contributor Ross Hanney

    (@rosshanney)

    Hello,

    In your theme’s style.css file, starting on line 765 you have the following rule:

    #content table {
    	border: 2px solid #AAA;
    	text-align: left;
    	margin: auto;
    	margin-bottom: 5px;
    	width: auto;
    }

    It’s the width: auto; that’s causing the problem (coupled with specificity issues).

    Thread Starter leahad

    (@leahad)

    Oh! Great! Erm…how would I fix that? There’s a huge DO NOT EDIT THIS FILE warning at the top of my style.css. Could I somehow avert the “specificity issues”?

    Plugin Contributor Ross Hanney

    (@rosshanney)

    Usually, you’d create a child theme and override the required CSS in the child theme’s style.css file. However, according to this, there’s a “Custom CSS Rules” option in the Weaver II theme, so that might be simpler.

    The CSS you’d need would be something like this:

    #content .gce-calendar {
    	width: 100%;
    }
    Thread Starter leahad

    (@leahad)

    HA! Another great triumph to your credit. I have gone from never-Wordpressed to WordPress-for-a-living over the course of the past three months, so I spend a LOT of time trolling through these boards – and as far as I can tell your support is pretty much without parallel. THANK! YOU!

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘[Plugin: Google Calendar Events] Unpredictable calendar grid width’ is closed to new replies.