I'm using Dreamweaver 4 for developping my site.
I use some templates, but when I load them in Dreamweaver, Dreamweaver automacilly change some things, so that the HTML-code is correct.
This is the code I want:
<html>
<head>
{META}
<title>{SITENAME} > {PAGE_TITLE}</title>
</head>
<body bgcolor="{T_BODY_BGCOLOR}" text="{T_BODY_TEXT}" link="{T_BODY_LINK}" alink="{T_BODY_ALINK}" vlink="{T_BODY_VLINK}"> (...)
But Dreamweaver does this:
<html>
<head>
</head><body bgcolor="{T_BODY_BGCOLOR}" text="{T_BODY_TEXT}" link="{T_BODY_LINK}" alink="{T_BODY_ALINK}" vlink="{T_BODY_VLINK}">
{META}
<title>{SITENAME} > {PAGE_TITLE}</title>
How can I stop it??