Ho provato con il secondo modo che mi ha indicato lecar ma nulla.
Quindi vi posto i codici sperando che mi possiate aiutare:
header.php:
Codice PHP:
<!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" <?php language_attributes(); ?>>
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<title><?php wp_title('«', true, 'right'); ?> <?php bloginfo('name'); ?></title>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div id="angoliInferiori">
<div id="angoliSuperiori">
<div id="page">
<div id="header" role="banner">
</div>
footer.php
Codice PHP:
<div id="footer" role="contentinfo">
<hr />
<!-- If you'd like to support WordPress, having the "powered by" link somewhere on your blog is the best way; it's our only promotion or advertising. -->
<p>
<?php printf(__('%1$s is proudly powered by %2$s', 'kubrick'), get_bloginfo('name'),
'<a href="http://wordpress.org/">WordPress</a>'); ?>
<br /><?php printf(__('%1$s and %2$s.', 'kubrick'), '<a href="' . get_bloginfo('rss2_url') . '">' . __('Entries (RSS)', 'kubrick') . '</a>', '<a href="' . get_bloginfo('comments_rss2_url') . '">' . __('Comments (RSS)', 'kubrick') . '</a>'); ?>
<!-- <?php printf(__('%d queries. %s seconds.', 'kubrick'), get_num_queries(), timer_stop(0, 3)); ?> -->
</p>
</div>
</div>
</div>
</div>
<?php wp_footer(); ?>
</body>
</html>
style.css:
Codice:
body {background: url(images/bg.gif);}
#page{margin: 0 auto;
width: 1000px;
border: 1px solid #C0C0C0;
background: #FFF;}
#content
{
float: left;
width: 700px;
}
#sidebar
{
float: right;
width: 300px;
}
#footer
{
clear: both;
}
#header { background: url(images/header.gif);
height: 200px;}
#angoliInferiori{
background-image: url(angoli_inf.gif);
background-position: left bottom;
background-repeat: no-repeat;
width: 300px;
}
#angoliSuperiori{
background-image: url(angoli_sup.gif);
background-position: 0 0;
background-repeat: no-repeat;
padding: 24px 0 24px 0;
}