here is my html
<div id="sidetop"><div>
<div id="sidemiddle"><div>
<div id="sidebottom"></div>
<span class="logotext">wegbweifgnqweilgnqwleing</span>
and my css
body {
color: #333333;
font-family: Arial, Helvetica, sans-serif;
}
#sidetop {
background: url(images/top.png);
top:0px;
width: 40px;
height: 59px;
left: 0px;
position: fixed;
}
#sidebottom {
background: url(images/bottom.png);
bottom:0px;
width: 40px;
height: 59px;
left: 0px;
position: fixed;
}
#sidemiddle {
background: #000;
top: 59px;
bottom: 59px;
height: 86.3%;
width: 40px;
position: fixed;
left: 0px;
}
.logotext {
display: block;
width: 730px;
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
font-size:35px;
letter-spacing:0.2em;
margin-top:325px;
position:absolute;
top:0;
left:-347px;
color: #fff;
}
and it ends up like this

but the values that ive used to position the elements only work with my specific browser size. How can I get #sidemiddle to resize to fill the gap between the top.png and the bottom.png regardless of the browser size? Also can I centre the text so that it stays in the middle of the shape regardless of browser size? Thanks