Reputation: 5302
I am using Fullcalendar javascript plugin and it's the best!
I was hoping if there's a way I can change the button placement. It should look like this
As you can see the Month Name is in between the Left and Right arrow. I've been reading the buttonText documentation but can't imagine how to achieve that kind of button placement.
Is that even possible? Hopefully it is! Your help will be greatly appreciated!
Thanks in advance!
Upvotes: 0
Views: 1869
Reputation: 417
Looking at the documentation for fullcalendar, you need to look at the header page
http://arshaw.com/fullcalendar/docs/display/header/
I believe you should have
{
right: 'prev, title, next'
}
Upvotes: 3