Colors & Fonts

Hex number
#92ab00

This color is literally called “Barf Green” in my color palette tool

Hex number
#151f6d

Midnight Blue

Hex number
#4A5568

Menu backgrounds – this color is called “Deep Space Sparkle”

Hex number
#758807

Hover color for links. This color is called “Swamp Green”

Hex number
#53c0cd

Legacy color from old site

Hex number
#f13d12

Legacy color from old site

Default Heading Styles

Heading 1 <h1>

font-weight: 700;
font-size: 60px;
line-height: 1.5;
font-family: Poppins, sans-serif;
margin: 1.5em (top/bottom) 0 .5em(l/r)

Heading 2 <h2>

font-weight: 700;
font-size: 30px;
line-height: 1.3;
font-family: Poppins, sans-serif;
margin: 1.5em (top/bottom) 0 .5em(l/r)

Heading 3 <h3>

font-weight: 700;
font-size: 24px;
line-height: 30px;
font-family: Poppins, sans-serif;
margin: 1.5em (top/bottom) 0 .5em(l/r)

Heading with special underline class

class=green_underline {
border-bottom: 1px solid #92ab00;
line-height: 1em;
padding-bottom: 0
font-size: 3.0em
text-transform: uppercase;
This style can be edited in the custom CSS section: Appearance > Customizer > Custom CSS

Heading 4 <h4>

font-weight: 700;
font-size: 24px;
line-height: 1.5;


heading 5 <h5>

font-weight: 700;
font-size: 20px;
line-height: 1.5;

To remove the Featured Image Banner from a page:

All About Menus

Menus Intro
Section/Page Menus
Mobile Menu

This filter code has been placed in the functions.php file.
Appearance > Theme File Editor > functions.php

Source: Tribe knowledgeable article:
https://theeventscalendar.com/knowledgebase/k/hide-events-of-a-category-on-the-calendar/#Hide_only_on_shortcode_page

You will need to edit this if you add any new athletics categories

add_filter( 'tribe_events_views_v2_view_repository_args', 'tec_exclude_events_category', 10, 3 );
 
function tec_exclude_events_category( $repository_args, $context, $view ) {
  // If not shortcode calendar then bail and show everything
  if ( $context->is('shortcode') ) {
    return $repository_args;
  }
   
  // List of category slugs to be excluded
  $excluded_categories = [
    'athletics',
    'boys-junior-varsity-basketball',
    'boys-varsity-basketball',
    'boys-varsity-soccer',
	'co-ed-pickleball',
	'co-ed-rock-climbing',
	'co-ed-varsity-cross-country',
	'co-ed-varsity-swimming',
	'co-ed-varsity-tennis',
    'girls-junior-varsity-basketball',
    'girls-junior-varsity-volleyball',
    'girls-varsity-basketball',
    'girls-varsity-soccer',
    'girls-varsity-volleyball',
    'varsity-baseball',
    'varsity-boys-volleyball',
    'varsity-cross-country',
  ];
  $repository_args['category_not_in'] = $excluded_categories;
 
  return $repository_args;
}
add_filter( 'tribe_events_views_v2_view_repository_args', 'tec_exclude_events_category', 10, 3 );
 
function tec_exclude_events_category( $repository_args, $context, $view ) {
  // If not shortcode calendar then bail and show everything
  if ( $context->is('shortcode') ) {
    return $repository_args;
  }
   
  // List of category slugs to be excluded
  $excluded_categories = [
    'athletics',
    'boys-junior-varsity-basketball',
    'boys-varsity-basketball',
    'boys-varsity-soccer',
	'co-ed-pickleball',
	'co-ed-rock-climbing',
	'co-ed-varsity-cross-country',
	'co-ed-varsity-swimming',
	'co-ed-varsity-tennis',
    'girls-junior-varsity-basketball',
    'girls-junior-varsity-volleyball',
    'girls-varsity-basketball',
    'girls-varsity-soccer',
    'girls-varsity-volleyball',
    'varsity-baseball',
    'varsity-boys-volleyball',
    'varsity-cross-country',
  ];
  $repository_args['category_not_in'] = $excluded_categories;
 
  return $repository_args;
}