• Resolved johnzeiger

    (@johnzeiger)


    I am trying to change the color of the events in the full calendar view from orange to black.

    As per the documentation, I added CSS to my stylesheet to override events_manager.css…in particular I changed the color from #FD7E29 to #000000 in the following code:

    table.eme-calendar-table td.eventful a, table.eme-calendar-table td.eventful-today a {
      font-weight: bold;
      color: #000000;
    }

    But when I do an Inspect Element in Chrome, I see that events_manager.css is not being overridden by my theme’s style.css

    Any idea what I’m doing incorrectly?

    The website is http://floralandhardyofskippack.com/events/

    https://wordpress.org/plugins/events-made-easy/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Franky

    (@liedekef)

    That depends on which css is being loaded first (which is difficult to control by a plugin, since your theme has it’s own css files).
    That’s why I documented to use eme.css in your theme css dir:

    http://www.e-dynamics.be/wordpress/?cat=30

    Thread Starter johnzeiger

    (@johnzeiger)

    Perfect…you’re the best!

    Thread Starter johnzeiger

    (@johnzeiger)

    I just discovered that it’s not working for events shown in a month’s view that are for the next or previous month. For example, if you go to May 2015 at floralandhardyofskippack.com/events, 5 days of April are shown and 6 days of June…and any events schedule on those days are not showing up as black; they are default orange instead. Those events are being formatted by style.css instead of events_manager.css…is that working as expected?

    Plugin Author Franky

    (@liedekef)

    that’s because they have different CSS class-id’s assigned to them, not “eventful” but “eventful-pre” and “eventful-post”.
    Use firebug to see all that.

    Thread Starter johnzeiger

    (@johnzeiger)

    But the styles of the April and June events on the May calendar are defined in style.css not events_manager.css…so if I try to override the style in eme.css, links throughout the site are affected instead of ones just in the events calendar

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘CSS Changes Not Overriding events_manager.css’ is closed to new replies.