I have set code for footer like:
and its HTML:
How to work this as footer content should be in the center but background colour (100 %) should be seen?
I do not like to use Table...
<table align="center">
PHP Code:
#footer {
background: repeat-x scroll center top #000000;
width: 100%;
height: 420px;
text-align: left;
padding: 18px;
color: #555;
line-height: 16px;
}
#footer div {
position:relative;
max-width: 1330px;
min-width: 1000px;
}
PHP Code:
<div id="footer">
<div align="center">
</div>
</div>
I do not like to use Table...
<table align="center">
Comment