Tue, 2004-08-10 15:12
Hello, I'm fairly new to this, so bear with me!
I'm having problems getting a calendar to show up within my content division. It works fine in IE, but not in Mozilla, so something must be wrong, but I can't seem to figure it out.
Here is the link:
http://www.passivesmarcasm.com/temp/photo.html
Any help is appreciated!
Tue, 2004-08-10 16:52
#1
Problem with calendar placement
I would put it in a <div> that floats left.
e.g.
<div id="main"> <div class="content"> ... <hr /> <div id="calendar" style="float:left;"> <!-- Your calendar table going here --> </div> <div style="clear:left;"> <!-- extends background to end of #calendar --> </div> </div> </div>
Tue, 2004-08-10 17:42
#2
Problem with calendar placement
Yay, it works! Thank you very much!