Hi - I'm new here and new at web design.
For my first site I used a Dreamweaver template so that I could begin to learn CSS. Well, the site is almost finished but there's a problem with the content on the index page.
http://andrew.cmu.edu/org/pdmg
In IE 5.1 on a Mac the content on the main page is cut off when the browser window is not 100% open. Of course, it looks good on every other browser and OS EXCEPT this one. What am doing wrong? Is there anything I can add to the CSS to make it not cut off? I have a feeling this is a very simple question.
Anyway, here are the layout divs:
#masthead{
padding: 10px 0px;
border-bottom: 1px solid #cccccc;
width: 100%;
}
#navBar{
position: absolute;
width: 165px;
margin: 0 85% 0 0;
padding: 0px;
background-color: #eeeeee;
border-right: 1px solid #ccc;
border-bottom: 1px solid #ccc;
}
#content{
position: absolute;
left: 240px;
top: 60px;
width: 75%;
padding-bottom: 40px;
padding-top: 15px;
}
Thanks in advance!