Utarehpson
Utarehpson

Reputation: 166

fullcalendar removing header still shows small cell

I'm trying to remove the header in my dayview in my fullcalendar plugin. using

columnFormat: {day: false},

removes the text but it still leaves a small empty cell! how can I remove this?

image http://img20.imageshack.us/img20/1994/fullcal.png

thanks in advance

Upvotes: 5

Views: 13043

Answers (3)

hotcakedev
hotcakedev

Reputation: 2504

You can add the config like this.

headerToolbar: false

refer to this

Upvotes: 10

Senthil
Senthil

Reputation: 539

You can hide header by config like this

header:false

Upvotes: 26

James Heitmeyer
James Heitmeyer

Reputation: 11

Using jQuery:

$('.fc-toolbar').remove();

Upvotes: 0

Related Questions