QUOTE(Vixx @ Dec 21 2007, 04:33 PM)

No there isn't. If you look at your source code, it says this:
CODE
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<head>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html><head>
<title> Violin in the Woods </title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></head>
<link href="/skins/1/stylesheet.css" rel="stylesheet" type="text/css" />
<body>
<div class="h1" id="container">
<div id="header"><img src="../images/header1.jpg" width="635" height="406"></div>
<div class="h1" id="sidebar">
<p>Navigation </p>
<p class="menu"><a href="http://www.sweetpatronus.cn/">Sakura</a></p>
<p class="menu"><a href="http://www.violinstar.net/blog.php">Blog</a></p>
<p class="menu">Domain</p>
<p class="menu">Linkage</p>
<p class="menu">Visitor</p>
<p class="menu">Contact</p>
<p>Hostees </p>
<p class="h2">Eunice</p>
<p class="h2">Felicia</p>
<p class="h1">Tagboard</p>
<p class="h2"><!-- BEGIN CBOX - www.cbox.ws -->
<div align="center" id="cboxdiv">
<iframe frameborder="0" width="160" height="125" src="http://www2.cbox.ws/box/?boxid=1118790&boxtag=3030&sec=main" marginheight="2" marginwidth="2" scrolling="auto" allowtransparency="yes" name="cboxmain" style="border:#FFFFFF 1px solid;" id="cboxmain"></iframe><br/>
<iframe frameborder="0" width="160" height="75" src="http://www2.cbox.ws/box/?boxid=1118790&boxtag=3030&sec=form" marginheight="2" marginwidth="2" scrolling="no" allowtransparency="yes" name="cboxform" style="border:#FFFFFF 1px solid;border-top:0px" id="cboxform"></iframe>
</div>
<p>
<!-- END CBOX -->
</p>
</p>
<p>Affiliates</p>
<p class="h2"><a href="http://www.sweetpatronus.cn">Sweet Patronus</a> </p>
<p class="h1">Of the Moment</p>
<p class="h2">None. </p>
<p class="h3"> </p>
</div>
</div>
</body>
<hr/><body>
</body>
</html>
</head>
<body>
<div class="container" id="content">
<h2>Welcome! ViolinStar.NET is currently under construction. You may wish to proceed to <a href="http://www.sweetpatronus.cn">Sweet Patronus</a> before ViolinStar.NET is ready.</h2>
<h2>In the meantime, you may want to link us with these buttons. Thanks for <a href="http://diamonddust.daintystar.com">Kitty</a> for the 3rd and 4th buttons </h2>
<p><img src="linkbuttons/88x15 (1).gif" width="80" height="15"><img src="linkbuttons/88x15 (2).gif" width="80" height="15"><img src="linkbuttons/88x31 (1).gif" width="88" height="31"><img src="linkbuttons/88x31 (2).gif" width="88" height="31"><img src="linkbuttons/88x31 (3).gif" width="88" height="31"></p>
</div>
</body>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<head>
<link href="style1.css" rel="stylesheet" type="text/css" />
</head>
<hr />
<div class="container">
<h1 align="left" class="menu">Credits</h1>
</div>
</body></html></html>
so there is CLEARLY more than one.
And you're still writing content text within <h2> tags, which are supposed to be used for headers:
CODE
<h2>Welcome! ViolinStar.NET is currently under construction. You may wish to proceed to <a href="http://www.sweetpatronus.cn">Sweet Patronus</a> before ViolinStar.NET is ready.</h2>
<h2>In the meantime, you may want to link us with these buttons. Thanks for <a href="http://diamonddust.daintystar.com">Kitty</a> for the 3rd and 4th buttons </h2>
Martina's right: without addressing this first, there's no way we can properly help you with your skinning. Please visit the tutorials suggested and re-code your site.
Okay. For header.php (the one in the root directory):
CODE
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<?php
$pathtoskins = "/home/kura/public_html/skins/";
$defaultskin = 1;
if (isset($_COOKIE['myskin']) && file_exists($pathtoskins . $_COOKIE['myskin'] . '/header.php') && file_exists($pathtoskins . $_COOKIE['myskin'] . '/footer.php')) {
$header = $pathtoskins . $_COOKIE['myskin'] . "/header.php";
$footer = $pathtoskins . $_COOKIE['myskin'] . "/footer.php";
$styles = "/skins/" . $_COOKIE['myskin'] . "/stylesheet.css";
} else {
$header = $pathtoskins . $defaultskin . "/header.php";
$footer = $pathtoskins . $defaultskin . "/footer.php";
$styles = "/skins/" . $defaultskin . "/stylesheet.css";
}
include($header);
?><body>
</body>
</html>
For personal.php:
CODE
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<head>
<?php include('header.php'); ?>
</head>
<body>
<div class="container" id="content">
<p>Welcome! ViolinStar.NET is currently under construction. You may wish to proceed to <a href="http://www.sweetpatronus.cn">Sweet Patronus</a> before ViolinStar.NET is ready.</p>
<p>In the meantime, you may want to link us with these buttons. Thanks for <a href="http://diamonddust.daintystar.com">Kitty</a> for the 3rd and 4th buttons </p>
<p><img src="linkbuttons/88x15 (1).gif" width="80" height="15"><img src="linkbuttons/88x15 (2).gif" width="80" height="15"><img src="linkbuttons/88x31 (1).gif" width="88" height="31"><img src="linkbuttons/88x31 (2).gif" width="88" height="31"><img src="linkbuttons/88x31 (3).gif" width="88" height="31"></p>
</div>
</body>
<?php include($footer); ?>
</html>
The footer.php file in skins/1/:
CODE
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><head>
<link href="style1.css" rel="stylesheet" type="text/css" />
</head>
<hr />
<div class="container">
<h1 align="left" class="menu">Credits</h1>
</div>
</body></html>
Is that why there are more than 1 <head> tags appearing? Do I need to remove the <head> tag in the header.php file?