Breakpoints
-
Hello. I do not want the calendar to adjust to screen size because I am only using for multi-day events. I have added to functions.php file and adjusted the sizing to no avail. It honestly seems to do absolutely nothing. This is the code I’m adding:
add_filter( 'tribe_events_views_v2_view_breakpoints', 'customize_tribe_events_breakpoints', 10, 2 ); function customize_tribe_events_breakpoints( $breakpoints, $view ) { // Extra small breakpoint (for mobile) $breakpoints['xsmall'] = 500; // Medium breakpoint (for tablet) $breakpoints['medium'] = 768; // Large breakpoint (for desktop) $breakpoints['full'] = 960; return $breakpoints; }
I’ve tried sizes from 50 to 5000 and no change. Please help.
The page I need help with: [log in to see the link]
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Breakpoints’ is closed to new replies.