10 pts.
 Dreamweaver CS3
Center dreamweaver web page when posting on the web. Web page now shows in upper left corner of browser and not on entire page.

Software/Hardware used:
ASKED: June 23, 2008  3:00 PM
UPDATED: June 25, 2008  6:04 AM

Answer Wiki:
Hi, This is the quick and easy way. Put your page in a table set to the width that you want and then center the table. <table align="center" width="776"> <tr> <td> YOUR CONTENT </td> </tr> </table> Or you could use css: <html> <head> <title>Document Title</title> <style> body { text-align: center; } .centered { margin-left: auto; margin-right: auto; width: 50em; text-align:left; background-color:#CCCCCC; } </style> </head> <body> <div class="centered" > YOUR CONTENT </div> </body> </html>
Last Wiki Answer Submitted:  June 25, 2008  6:04 am  by  Derrsu   15 pts.
All Answer Wiki Contributors:  Derrsu   15 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _