Hello all,
A page I'm working on, has a php calendar in a div on the right side of the page. I had it displaying correctly in IE/Firefox down to an 800x600 resolution, but other people work on the page and something has changed. Now I'm having trouble getting it to work correctly. The IE page displays it narrower and with scrollbars, where the firefox browser displays it correctly. The part of the site i'm referring to uses this css/html. Cut from the css file:
and this from the index:
Any help would be appreciated.
A page I'm working on, has a php calendar in a div on the right side of the page. I had it displaying correctly in IE/Firefox down to an 800x600 resolution, but other people work on the page and something has changed. Now I'm having trouble getting it to work correctly. The IE page displays it narrower and with scrollbars, where the firefox browser displays it correctly. The part of the site i'm referring to uses this css/html. Cut from the css file:
Code:
#calbar{background-color:#19517F;
color: white;
width:100%;
height: 100%;
z-index: 2;
border-top: 0px solid #000;
border-bottom: 1px solid #000;
text-align: center;
margin-bottom: 10px;
}
#cal{
position:absolute;
width:22%;
border: 1px solid #000;
top: 288px;
right:15px;
}
Code:
<div id="cal"><div id= "calbar">Calendar of Events</div>
<iframe src="[URL unfurl="true"]http://asmc-lol.org/MyEventCal/myevent.php"[/URL] name="iframe" width="100%" height="360px" frameborder="0"></iframe></div>
Any help would be appreciated.