So when i heard that you need CSS etc. i start learning CSS. Now i get this.
Template:
Code: Select all
{process_pagedata}
<!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" >
<head>
<title>{sitename} - {title}</title>
{metadata}
{stylesheet}
</head>
</__body>
<!--Het maken van de header-->
<div id="header">
<h1>{sitename}</h1>
</div>
<!--Eind van maken header-->
<!--Het maken van het menu-->
<div id="menu">
{menu}
</div>
<!--Eind maken van menu-->
<!--Het maken van content-->
<div id="content">
{content}
</div>
<!--Eind maken van content-->
<__body>
</__html>
Code: Select all
body {
margin: 0px;
padding: 0px;
font-family: Georgia, Times, Serif;
color: black;
width: 600px;
}
#header {
background-color: #666;
color: white;
font-size: 28px;
}
#menu {
position: absolute;
top: 40px;
left: 10px;
width: 160px;
margin-left: 10px;
padding-top: 20px;
}
#content {
position: absolute;
top: 30px;
left: 180px;
padding-top: 50px;
margin: 0px 10px 0px 50px;
}
Almost thanks
Sorry for my bad Engelish i come from the Netherlands and i'm only 13 years old.
Omar