i have a problem in a footer that if the content of the page did not fill the all the page
the footer will not be in front of the status bar'
but it is not working well on firefox and internet explorer in the same time]
so how i can put the footer above the status bar in the pages that not contains alot of data???
to see what i mean plz open this link in internet explorer and firefox th see the difference
http://www.graphicano.com/john/index.htm
with css:
.bodydwn {
background-image: url(images/body_dwn.jpg);
padding-left: 280px;
font-size: 10px;
vertical-align: middle;
}
and
http://www.graphicano.com/john/index2.htm
with css
.bodydwn {
background-image: url(images/body_dwn.jpg);
padding-left: 280px;
font-size: 10px;
vertical-align: middle;
width: 100%;
position: absolute;
bottom: 0px;
}
|