Witam!
Mam następujący kod php/html:
<?php
?>
<link rel="stylesheet" type="text/css" href="css/template1.css" />
<?php
header('Content-Type: text/html; charset=utf-8');
require_once('akcje.php'); //akcje za pomocą _GET
require_once('other.php'); //pozostałe funkcje
// zmienne sesyjne #######################
// $_SESSION['user_id'];
// $_SESSION['user_login'];
// zmienne sesyjne #######################
include('elementy/header.php');
?>
<div id="top">
<div id="header"><?php include('elementy/pasek.php'); ?></div>
<div id="NAGLOWEK"><?php include "elementy/head.php"?></div>
<div id="menulewe"><?php include('elementy/lewemenu.php'); ?></div>
<div id="TRESC"><?php require_once('kontroller.php'); //ładuje odpowiednie strony ?></div>
<div id="menuprawe"><?php include_once('elementy/menuprawe.php');?></div>
<div id="STOPKA">Stopka serwisu</div>
</div>
<?php
//require_once('kontroller.php'); //ładuje odpowiednie strony
?>
I następujący kod css:
html, body {
background-color: #fff;
color: #000;
margin: 0;
padding: 0;
}
#top {
width: 1000px;
}
#NAGLOWEK {
background: url(http://czwartaera.xle.pl/gra/img/logo.jpg);
overflow: hidden;
}
#header {
background-color: #888;
}
#menulewe {
width: 150px;
float: left;
overflow: hidden;
background-color: #ccc;
}
#menuprawe {
width: 150px;
float: right;
overflow: hidden;
background-color: #ccc;
}
#TRESC {
width: 480px;
float: left;
overflow: hidden;
background-color: #fff;
}
#STOPKA {
clear: both;
width: 100%;
background-color: #888;
}
I tak wygląda szablon:
http://img695.imageshack.us/img695/6158/stronax.gifWie ktoś, co mam źle? Chodzi o to, że logo nie chce się całe pokazać, a jestem pewien, że rozmiary są dobrze...