• Resolved Manaslu

    (@iamnaran)


    Hi
    I have a really quick question. On the top left corner of my calendar display, i have month, year and calendar as the drop-down options. Is it possible to hide any of those or change the size of the display so all the text can be displayed.

    thanks in advance for your help

    Regards
    Manaslu

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @iamnaran. Anything can be customized with CSS!

    You could try something like this:

    #sc_events_calendar_head {
    	position: relative;
    }
    
    #sc_event_select, #sc_event_nav_wrap {
    	position: absolute;
    	top: 0;
    }
    
    #sc_event_nav_wrap {
    	right: 10px;
    }
    
    #sc_events_calendar_head h2 {
    	display: none;
    }
    
    #sc_events_calendar_head {
    	height: 40px;
    }

    You’ll want to tweak that CSS for your exact needs.

    Thread Starter Manaslu

    (@iamnaran)

    thank you for your help.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Month/Year and calendar type dropdown’ is closed to new replies.