I got it working after redoing the code from scratch it took me around 15 minutes as i had worked most of it out from writing it before i will post the code so you can compare with the old code and see what has changed if you are having the same problem
HTML
<html>
<head>
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" type="text/css" href="css/cstyle.css" />
<!--[if lt IE 8]><link rel="stylesheet" href="css/reset.css"/><![endif]-->
<!--[if lt IE 8]><link rel="stylesheet" href="css/style.css"/><![endif]-->
<!--[if gte IE 8]><link rel="stylesheet" href="css/reset.css"/><![endif]-->
<!--[if gte IE 8]><link rel="stylesheet" href="css/style.css"/><![endif]-->
<title>Lakewood Music - Home</title>
</head>
<body>
<div id="container">
<div id="speakers"></div>
<div id="logo"><a href="index.html"><img src="img/logo.png"></a></div>
<div id="header"></div>
<div id="navbar"></div>
<div id="content">
<div class="mainctit"><h1>Home Page</h1></div>
<div class="mainctop"></div>
<div class="maincmain">This is test home page This is test home page This is test home page This is test home page This is test home page This is test home page This is test home page</div>
<div class="maincbot"></div>
<div class="mainctit"><h1>News 1</h1></div>
<div class="mainctop"></div>
<div class="maincmain">This is test home page This is test home page This is test home page This is test home page This is test home page This is test home page This is test home page</div>
<div class="maincbot"></div>
<div class="mainctit"><h1>News 2</h1></div>
<div class="mainctop"></div>
<div class="maincmain">This is test home page This is test home page This is test home page This is test home page This is test home page This is test home page This is test home page</div>
<div class="maincbot"></div>
<div class="mainctit"><h1>News 3</h1></div>
<div class="mainctop"></div>
<div class="maincmain">This is test home page This is test home page This is test home page This is test home page This is test home page This is test home page This is test home page</div>
<div class="maincbot"></div>
<div id="sidebar">
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 10,
interval: 6000,
width: 250,
height: 500,
theme: {
shell: {
background: '#0f4b84',
color: '#ffffff'
},
tweets: {
background: '#e3e3e3',
color: '#000000',
links: '#125391'
}
},
features: {
scrollbar: false,
loop: false,
live: false,
hashtags: true,
timestamp: true,
avatars: false,
behavior: 'all'
}
}).render().setUser('L*************d').start();
</div>
</div>
<div id="footer"></div>
<div id="copyright">Copyright © Lakewood Music 2011</div>
</div>
</body>
</html>
CSS:
body {
background-color:#bcbcbc;
padding-top:15px;
}
#container{
width:900px;
position:relative;
margin-left:auto;
margin-right:auto;
}
#speakers {
background:url(../img/speakers.png);
width:900px;
height:249;
margin-left:auto;
margin-right:auto;
position:absolute;
top:-10;
z-index:2;
}
#header{
background:url(../img/header.png);
width:720;
height:180;
margin-left:auto;
margin-right:auto;
}
#logo{
width:266;
height:87;
position:absolute;
left:103;
top:6;
z-index:20;
}
#navbar{
background:url(../img/navbar.png);
width:800;
height:40;
margin-left:auto;
margin-right:auto;
}
#content{
background:url(../img/contentbg.png);
width:900;
background-repeat:repeat-y;
text-align:left;
padding-top:15px;
padding-left:100px;
}
#footer{
background:url(../img/footer.png);
width:900;
height:62;
}
#sidebar {
width:260;
float:right;
position:absolute;
top:235;
z-index:5;
left:540;
}
#copyright {
font-size:12px;
text-align:center;
}
.mainctit{
background:url(../img/ctit.png);
background-repeat:no-repeat;
width:430;
height:24;
padding-left:8px;
padding-top:4px;
}
.mainctop{
background:url(../img/ctop.png);
background-repeat:no-repeat;
width:430;
height:12;
}
.maincmain{
background:url(../img/cmain.png);
width:430;
background-repeat:repeat-y;
padding-left:5px;
}
.maincbot{
background:url(../img/cbott.png);
background-repeat:no-repeat;
width:430;
height:12;
}
Hope this helps someone,
Blink359