I currently have this on my website:
https://i.sstatic.net/lfBum.png
But I want to organize the 3 elements to look like this:
https://i.sstatic.net/SwyMs.png
<th class="fc-day-header fc-widget-header fc-sat" data-date="2016-10-01">DAY 1<br>Saturday, October 1</th>
I attempted to adjust the width of the fc-day-header class without success.
CSS is not my strong suit, so I'm unsure of what to do next.
Any suggestions?
EDIT: Here is the html structure:
<table>
<thead>
<tr>
<th class="fc-axis fc-widget-header" style="width:18px"></th><th class="fc-day-header fc-widget-header fc-sat" data-date="2016-10-01" style="width:70%;">DAY 1<br>Saturday, October 1</th>
<th class="fc-day-header fc-widget-header fc-sun" data-date="2016-10-02">DAY 2<br>Sunday, October 2</th>
<th class="fc-day-header fc-widget-header fc-mon" data-date="2016-10-03">DAY 3<br>Monday, October 3</th>
</tr>
</thead>
</table>
The html and css code were generated by full calendar and I can only modify them using javascript.