Hi There how do i align template to the center of the page in dreamweaver it`s to the left and i want it in the center of the page Thanks
We need more info to answer your question. It depends on how your template is made. Are you using CSS with <div>'s, or tables? Post a link to the page your trying to center.
well since you're using dreamweaver you probably have no idea what html is anyways so just use <center>template crap here</center>. it's depreciated and has been for years but it will work.
</style></HEAD> <BODY LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0> <!-- ImageReady Slices (casino04.psd) --> <div class="style1" align="center" id="Layer2"> <strong>CASINO<br> NAME</strong> </div> I think this should be <TABLE align="left" WIDTH=780 BORDER=0 CELLPADDING=0 CELLSPACING=0> <TR> Like this: <TABLE align="center" WIDTH=780 BORDER=0 CELLPADDING=0 CELLSPACING=0> <TR> I´m not good with tables, but maybe that will help.
margin: 0 auto with CSS Example.... <div id="page-wrap"></div> CSS div#page-wrap { margin: 0 auto; } That will center your page wrap and anything inside that page wrap!