/* pichat.css */ html, body { padding: 1em; } #content{ position:absolute; z-index:3; } #chatbox { position: fixed; top:48px; } h1,h2{ font: 100% 'helvetica neue',sans-serif; letter-spacing:10px; text-transform:uppercase; font-family: Arial, Helvetica, sans-serif; font-size: 9px; top:35px; position: fixed; } #messagePane { border: 1px solid green; height: 80%; padding: 5px; position: fixed; width: 80%; } #messageList { height: 100%; width: 100%; position: inherit overflow-y: auto; overflow-x: hidden; border-bottom: 1px solid grey; } #msgInputDiv { height: 15px; position:relative; } #msgInput { width: 85%; margin-right: 5px; margin-top: 15px; position:relative; } #msgSubmit { width: 14%; position:relative; } .msgDiv img { max-width: 650px; width: expression(this.width > 650 ? 650: true); max-height:400px; height: expression(this.width > 400 ? 400: true); max-width:400px; } #userList { overflow: auto; border: 1px solid blue; height: 80%; margin: 0px; position: fixed; padding: 5px; width: 10%; right: 3%; }