Hi Darren and welcome to the forums!
First off, nice site–it’s coming out great. š
There are a couple of ways to go about changing the H2 headings in the widget. One way (as you noted) is to modify the template:
- Make a copy of theĀ single-event.php file. It’s located in the PRO plugin directory under /views/pro/widgets/modules.
- Make a new folder in your theme directory calledĀ tribe-events
- Make another folder in that one calledĀ pro
- Make anotherĀ folder in that last one calledĀ widgets
- Make one last folder in that one calledĀ modules
- Place the copied file in that last folder
Now that the template is in your theme, it can be modified to suit you needs. In this case, change the H2 tags to something else that matches the rest of your theme.
The other way to do it is directly with CSS. For example. you could add something like this to your theme’sĀ style.css file to change the size:
.tribe-mini-calendar-event h2 {
font-size: 25px;
}
I hope this helps!
Geoff