Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

I downloaded the event organizer and I really like it however my widget does not change to the next month when you click on either next or previous

Is there a way to increase the font that is displayed for [eo_events]

Thanks

The URL to the page is http://compupets.server303.com/?page_id=2

share|improve this question

1 Answer

Welcome to WPSE Louise! This site is intended for WordPress plug-in/theme development and your first port of call for plug-in bugs should be the plug-in's forums - so in future please report them there :).

The issue you've raised is a known bug which effects some themes. It has been reported on the plug-in forums here and will be fixed in the next update.

The [eo_events] produces a HTML list (<ul>) with class eo-events-shortcode - you can control its styling by targeting it appropriately in your themes style.css:

 ul.eo-events-shortcode{
    font-size: 18px;
 }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.