• Resolved paulgunning

    (@paulgunning)


    Hi

    I am trying without success to set the height of the fullcalendar in Event Manager plugin with css or jquery/js.

    This jquery in form initialise does not work

    jQuery(document).ready(function($){
    $(‘.wpfc-calendar’).fullCalendar(‘option’, ‘contentHeight’, 350);

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support angelo_nwl

    (@angelo_nwl)

    you can try custom css like

    
    .fc-day-grid-container.fc-scroller {
    	height: auto!important;
    	overflow-y: auto;
    }
    
    Thread Starter paulgunning

    (@paulgunning)

    Well, what I had in mind was reducing all cell height which would make it more compact. The css above reduces the container but you end up with a scrollbar.

    Maybe useoverflow-y: none; instead of overflow-y: auto; ?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to set height of Event Manager full calendar in month view’ is closed to new replies.