Centering site
Good morning,
Finally I found the way to center a site both horizontally and vertically after exporting the file from fireworks.
The file is always on the left of your browser.
All you have to do is import the file to dreamweaver and use this code:
Center horizontally
<body>
<center>
*Your Code Here*
</center></body>
Center vertically & horizontally
<html>
<head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title></title>
<style type="text/css">
html, body { height: 100%; padding: 0; margin: 0; }
table { text-align: center; height: 100%; width: 100%; border: 0; }
</style>
</head>
<body>
<table>
<tr>
<td>
<!-- Place contents here for absolute centering -->
</td>
</tr>
</table>
</body>
</html>
