I have an availability calendar with a layout issue. It follows this structure:
Online example:
I would like the calendar to show each quarter on a new line. Whenever I use clear="left" it puts the next quarter at the bottom of the left-hand menu. Note: The online example doesn't use clear="left" so the months are all in a line
Tony
[red]_________________________________________________________________[/red]
Webmaster -
Code:
<style>
div.year {}
div.quarter {}
table.month {float: left;}
</style>
...
...
...
<div class="year">
<div class="quarter">
<table class="month">Jan</table>
<table class="month">Feb</table>
<table class="month">Mar</table>
</div>
<div class="quarter">
<table class="month">Apr</table>
<table class="month">May</table>
<table class="month">Jun</table>
</div>
etc...
</div>
I would like the calendar to show each quarter on a new line. Whenever I use clear="left" it puts the next quarter at the bottom of the left-hand menu. Note: The online example doesn't use clear="left" so the months are all in a line
Tony
[red]_________________________________________________________________[/red]
Webmaster -