I’m using this shortcode to just test the calendar:
[eo_fullcalendar headerLeft='prev,next today' headerCenter='title' headerRight='month,agendaWeek']
I don’t see the next and previous buttons? Not sure why. I see the spans where they should be in the html.
http://sandbox.intrepidrealist.com/selva-armonia/schedule/
Thanks!

Alicia St Rose
Hi Alicia
Have you turned of the plug-in’s styling form the settings? It doesn’t appear as though the plug-in’s styles are loading. If that’s intentional, than that’s fine, but it does mean that the calendar looses the background image that usually uses. With EO 2.3.1 you can do the following: [eo_fullcalendar theme="false"]
, which will use a text indicator (that is, not an icon/background image) which may work better. You can further style that with your theme’s style.css
.
Otherwise in your theme’s style.css
can provide a left and right arrow images yourself
.fc-button-prev .ui-icon {
background: url( [image url ] );
width: 15px;
height: 15px;
display: inline-block;
}
.fc-button-prev .ui-icon {
...
}
Let me know if you have any questions or hit any problems on this.

Stephen Harris
That was it! I had CSS disabled so I can control the styles.
Thanks!

Alicia St Rose