StoutFiles

msg:4211311 | 12:47 am on Oct 5, 2010 (gmt 0) |
float: center isn't a real thing, you can only float left or right.
|
insert_car

msg:4211323 | 1:32 am on Oct 5, 2010 (gmt 0) |
oh yeah i actually changed that already sorry about that. other that than, see anything?
|
enigma1

msg:4211541 | 10:42 am on Oct 5, 2010 (gmt 0) |
Hi insert_car welcome to the forums. First of all make sure you assign classes or ids accordingly. You defined selectors in your style but you are using classes. You also need to get rid of the -ve margin unless you're trying to re-position the footer somewhere. Here is some code for your footer, I removed the errors and setup some background color for the footer. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en"> <head> <title>test page</title> <style type="text/css"> #clearfooter { min-height: 100%; width: 900px; margin:0 auto; /* centers #wrapper */ } #footer { background: url(../Images/footerbg.png) repeat-x left; background-color: #ECECFC; height: 164px; width:100%; /* centered div must be given a width */ font-family: Arial, Helvetica, sans-serif; font-size: 10px; color: #B4A198; padding-bottom: 0px; } #left{ height: 100%; width: 124px; float: left; padding-right: 20px; text-align:left; } #right{ height: 100%; width: 124px; float: right; padding-right: 20px; text-align:right; } #centered{ height: 100%; width: 124px; float: left; padding-right: 20px; text-align:center; } </style> </head> <body> <div id="footer"> <div id="footercontainer"> <div id="left">Left aligned text here<br />Next line here</div> <div id="right">Right aligned text here<br />Next line here</div> <div id="centered">Center Text here<br />Next line here</div> </div> </div> </body> </html>
|
insert_car

msg:4211612 | 1:13 pm on Oct 5, 2010 (gmt 0) |
ok that got it man thank you for the help! awesome!
|
BuzzyDev

msg:4211711 | 3:31 pm on Oct 5, 2010 (gmt 0) |
Great! this is what I was looking for today, thank you!
|
|