views:

327

answers:

1

Hi,

I am using jQuery fullcalendar in my application. I want to display the calendar only on the right side of my screen but not sure how to reduce the size of the calendar. Right now it is displaying in the full screen

+1  A: 

Just stick it in a div with a specified width as per home page for fullcalendar

<div id='container'>
...
<div id='calendar'></div>
...
</div>

with css

#container {
    width: 810px;
}
TFD