No matter what I do, I cannot get this layout to center! I have tried text-align center, float center, and messing with the margins. Can someone help me fix my layout so I am able to center it? Website: http://dealfiesta.com/index.html CSS: http://dealfiesta.com/templatecss.css
No luck . I have my layout sizes in pixels and spacing for some items is set using left:xxx px. Could this be why it isn't working? If so, what can I do to fix this?
have you tried to make a 1x1 table and put your site in it? Like this... <body> <table border="1" align="center"> <tr> <td>This is where the website goes. </td> </tr> </table> </body> Code (markup):
That doesn't work either, thanks for trying though. Either way, HTML center values do not work on CSS pages.
Hi there, please validate your code and choose a doctype to put at the top of your page. Once you've done that, it's easier for us to help you.
Thanks for reminding me to validate my code and add a doctype! I can't believe I forgot! Either way, I already fixed my problem. Using position: relative and margin: 0 auto fixed it!