Thanks that is superb but can't get it to work this is my index.php code
<?php
if(!defined('WB_URL')) {
header('Location: ../index.php');
exit(0);
}
?>
<!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" xml:lang="en" lang="en">
<head>
<title><?php page_title(); ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=<?php if(defined('DEFAULT_CHARSET')) { echo DEFAULT_CHARSET; } else { echo 'utf-8'; }?>" />
<meta name="description" content="<?php page_description(); ?>" />
<meta name="keywords" content="<?php page_keywords(); ?>" />
<?php
if(function_exists('register_frontend_m
odfiles')) {
register_frontend_m
odfiles('css');
register_frontend_m
odfiles('js');
} ?>
<link href="/templates/site/style.css" rel="stylesheet" type="text/css" />
</head>
<!--[if IE 6]>
<link href="/templates/site/ie.css" rel="stylesheet" type="text/css" />
<![endif]-->
<body id=<?php echo PAGE_TITLE; ?> >
<div class="header">
<div class="logo"><a href="/index.php"><img src="/templates/site/images/logo_main.png" width="635" height="170" border="0" /></a></div>
<div class="topRblock"><?php page_content(3); ?></div>
<br clear="all" />
</div>
And this is my style sheet:
body {
font-family : Arial, Helvetica, sans-serif;
font-size : 14px;
color : #FFFFFF;
background-color: #000000;
}
body #home {
background-image: url(/templates/site/images/homeimg.png);
background-repeat: no-repeat;
background-color: #000000;
}
.centerall {
margin-right: auto;
margin-left: auto;
width: 995px;
}
.header {
width: 995px;
margin-right: auto;
margin-left: auto;