Soldato
- Joined
- 12 Feb 2006
- Posts
- 17,662
- Location
- Surrey
trying to make another website layout but having problems with it in FF, weird as its usually IE.
anyways i have a content-wrapper which is whats wrapping all the content together which a blueish background, then i got like the left/right sidebars and main part within that.
in IE the blue is fine and is going 100% down with the content, but in FF it does nothing, i can only see a small amount which is because of a padding i put.
here is the css, if html is needed i will post that too:
anything?
also while im here can anyone tell me why only in IE does the last part of the text get repeated and appear outside of where is supposed to be. here a piccy of it happening?

anyways i have a content-wrapper which is whats wrapping all the content together which a blueish background, then i got like the left/right sidebars and main part within that.
in IE the blue is fine and is going 100% down with the content, but in FF it does nothing, i can only see a small amount which is because of a padding i put.
here is the css, if html is needed i will post that too:
Code:
/* CSS Document */
body {
background-color: #CCCCCC;
background-image: url(bg_images/body_bg.gif);
background-repeat: repeat-x;
font: 11px Verdana, Arial, Helvetica, sans-serif;
margin: 0px;
padding: 0px;
text-align: left;
color: #666666;
}
/*-------------- SITE WRAPPER -------------- */
#site-wrapper{
margin: 0px auto 0px auto;
width: 1000px;
position: relative;
height: 100%;
}
/*-------------- HEADER -------------- */
#header-wrapper{
height: 84px;
width: 1000px;
overflow: hidden;
position: relative;
}
.header-left{
float: left;
height: 84px;
width: 552px;
background: #217fbd;
overflow: hidden;
}
.header-middle {
float:right;
height:84px;
width:243px;
background: #919191;
overflow:hidden;
}
.header-right {
float:right;
height:84px;
width:205px;
background: #217fbd;
overflow:hidden;
}
/*-------------- SEARCH BAR -------------- */
.searchbar-wrapper {
height: 38px;
width: 1000px;
overflow: hidden;
position: relative;
background: #1967b1;
border-right: 2px solid #616161;
}
/*-------------- CONTENT AREA -------------- */
#content-wrapper {
height: 100%; /* ---- change this when i have content sorted out */
width: 1000px;
position: relative;
padding-top: 10px;
background: #217fbd;
border-bottom: 2px solid #54a3e8;
border-right: 2px solid #616161;
}
/*-------------- LEFTBAR -------------- */
#leftbar-wrapper {
width: 194px;
height: 100%;
margin: 0px 10px 10px 10px;
float: left;
display: inline;
}
#leftbar-box {
width: 194px;
height: 100%;
background: #ffffff;
position: relative;
border: 1px solid #ffffff;
margin-bottom: 10px;
border-bottom: 6px solid #e7e7e7;
}
.leftbar-header {
width: 194px;
height: 36px;
position:relative;
background: #77cf04;
font-weight: bold;
color: #ffffff;
vertical-align: 50%;
text-transform: capitalize;
border-bottom: 4px solid #e7e7e7;
}
.leftbar-content {
width: 184px;
height: 100%;
background: transparent;
color: #666666;
text-align: left;
padding:5px;
overflow: hidden;
margin-bottom: 1px;
border-bottom: 1px solid #ececec;
}
/*-------------- RIGHTBAR -------------- */
#rightbar-wrapper {
width: 274px;
height: 100%;
margin: 0px 10px 10px 10px;
float: right;
display: inline;
}
#rightbar-box {
width: 274px;
height: 100%;
background: #ffffff;
position: relative;
border: 1px solid #ffffff;
margin-bottom: 10px;
border-bottom: 6px solid #e7e7e7;
}
.rightbar-header {
width: 274px;
height: 36px;
position:relative;
background: #77cf04;
font-weight: bold;
color: #ffffff;
vertical-align: 50%;
text-transform: capitalize;
border-bottom: 4px solid #e7e7e7;
}
.rightbar-content {
width: 264px;
height: 100%;
background: transparent;
color: #666666;
text-align: left;
padding:5px;
overflow: hidden;
margin-bottom: 1px;
border-bottom: 1px solid #ececec;
}
/*-------------- MIDDLEBAR -------------- */
#middlebar-wrapper {
width: 492px;
_width: 486px;
height: 100%;
margin: 0px 0px 10px 0px;
float: right;
display: inline;
}
#middlebar-box {
width: 492px;
_width: 486px;
height: 100%;
background: #ffffff;
position: relative;
border: 1px solid #ffffff;
margin-bottom: 10px;
border-bottom: 6px solid #e7e7e7;
}
.middlebar-header {
width: 492px;
_width: 486px;
height: 36px;
position:relative;
background: #44a5df;
font-weight: bold;
color: #ffffff;
vertical-align: 50%;
text-transform: capitalize;
border-bottom: 4px solid #e7e7e7;
}
.middlebar-content {
width: 482px;
_width: 476px;
height: 100%;
background: transparent;
color: #666666;
text-align: left;
padding: 5px;
overflow: hidden;
margin-bottom: 1px;
border-bottom: 1px solid #ececec;
}
/*-------------- FOOTER -------------- */
#footer {
height: 59px;
width: 1000px;
overflow: hidden;
position: relative;
background: #3ba0ff;
border-top: #1967b1;
float: left;
}
anything?
also while im here can anyone tell me why only in IE does the last part of the text get repeated and appear outside of where is supposed to be. here a piccy of it happening?
