}Code:#bottombar {
height: 30px;
width: 100%;
position: fixed;
bottom: -1px;
color: #000000;
}
#topbar {
height: 30px;
width: 100%;
position: fixed;
margin: auto auto;
color: #000000;
Printable View
}Code:#bottombar {
height: 30px;
width: 100%;
position: fixed;
bottom: -1px;
color: #000000;
}
#topbar {
height: 30px;
width: 100%;
position: fixed;
margin: auto auto;
color: #000000;
Thanks for the help, I've already looked at his coding, yet I still can't seem to get it to work, it's strange. It seems I have to change it to position: absolute; for it to work in Internet Explorer, but then it won't work in any other browser! Damn I hate Internet Explorer, it sucks.
Hey, thank you for your help, however, this still did not work. Thank you anyway though! :)
+Rep to you both.
make two style sheets one for ie , one for every other browser then in the ie one do the absolute position
#bottombar {
position: fixed;
width: 100%;
height: 36px;
float: left;
padding-top: 7px;
margin: 0;
}
ye you would have to change both, or make a global one and 2 secondary ones for just that element
#bottombar {
height: 30px;
width: 99%;
position: fixed;
bottom: 0px;
left: 0px;
color: #000000;
}
#bottombar .barmenu {
height: 30px;
width: 99%;
margin-left: auto;
margin-right: auto;
background-color: #EEEEEE;
border: #666666 solid 1px;
color: #000000;
}
This is what I have for the bottom bar, I've tried changing everything, nothing seems to be working.
Still didn't work, but thanks for attempting again.
#bottombar {
height: 30px;
width: 99%;
position: fixed;
bottom: -1px;
left: 0px;
color: #000000;
}
#bottombar .barmenu {
height: 30px;
width: 99%;
margin-left: auto;
margin-right: auto;
background-color: #EEEEEE;
border: #666666 solid 1px;
color: #000000;
}