I have been directed to the following section of code as the area I should focus on to modify for my needs:
if($showLegend == 'yes'){
$output .= '<div class="wpsbc-legend">';
$output .= wpsbc_print_legend($calendarLegend,$calendarLanguage);
$output .= '<div class="wpsbc-clear"><!-- --></div></div>';
}
The above code supposedly produces a calendar legend where the legend items display one above the other.
My first question is, from the code above, what puts the items above each other?
My second question is, how would I modify it so the items are Inline (next to each other on a single line)?