Im building wordpress theme based on bootstrap, and on default wordpress calendar widget, styling is not matched with bootstrap styling.
However it's very easy to match width of columns in calendar widget.
When widget is activated it's wrapped in
<table id="wp-calendar">
If i am somehow able to add class to that table with that specific id i would solve problem with styling.
So basically instead of
<table id="wp-calendar">
i need to have
<table id="wp-calendar" class="table table-responsive table-striped">
Is there solution to add class to that specific table with that id?
Some php function or jquery?