Hi mrboy31,
Yes your widget seems to have ballooned in size, for some reason! First thing to do (if you haven’t already) is read up on our Themer’s Guide – link over in Useful Resources on the right.
Your theme (“Hustle”) specifies some padding for table cells which is partly responsible for this (see the main theme stylesheet, lines 505-511) and we can possibly mitigate this by adding some CSS of our own.
For instance, you could add these rules to your tribe-events.css override:
table.tribe-mini-calendar td,
table.tribe-mini-calendar th {
padding: 0.34em 0.6em;
}
That file should be placed in a subdirectory of your theme, itself called tribe-events, so that you have:
wp-content/themes/YOUR_THEME/tribe-events/tribe-events.css
Does that help?