Hallo,
ich bin am verzweifeln. Ich habe im header.php den Verlinkungscode eingeben. Dann erscheint der Header aber der alte bleibt (unverlinkbare). Und wenn ich in der CSS "#head & #titel" entferne, ist auf der startseite mein verlinkbarer header aber wenn ich dann auf ein thema klicke, ist kein header mehr
Link: [HIDE]supermode.bplaced.net/blog[/HIDE]
Bitte helfen.
CSS Code:
Code
/* ---------------------------------------------------------------------------------- */
html, body {margin: 0; padding: 0; text-align: center;}
body {
font-size: 12px;
background: #6e7d7a;
background: url(images/back.jpg);
font-family: Verdana, Arial, Helvetica, sans-serif;}
p {margin: 0px 0px 12px 0px;}
a {color: #1f5a66; text-decoration: none;}
a:hover {color: #993d00; text-decoration: none;}
#content a:hover {text-decoration: none; color: #0095b3;}
#archiv a:hover {text-decoration: none; color: #0095b3;}
#head a
/* ---------------------------------------------------------------------------------- */
#page {
background: url(images/main.jpg) repeat-y;
margin: 0 auto;
padding: 0;
text-align: left;
width: 900px;}
#head {
background: url(images/head.jpg) no-repeat;
height: 210px;
padding: 0px 0px 0px 0px;
margin: 0px 0px 0px 0px;}
#titel {
float: left;
text-align: center;
width: 900px;
margin: 0px 0px 0px 0px;
padding: 128px 0px 0px 0px;}
/* ---------------------------------------------------------------------------------- */
Alles anzeigen
Header.php:
PHP
<?php load_theme_textdomain('avenue'); ?>
<!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 bloginfo('name'); ?> <?php if ( is_single() ) { ?> » Blog Archiv <?php } ?> <?php wp_title(); ?></title>
<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats -->
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php wp_get_archives('type=monthly&format=link'); ?>
<?php wp_head(); ?></head>
<body>
<div id="page"><!-- the page -->
<div id="head"><!-- the head -->
<div id="titel"><!-- the weblog titel -->
</div><!-- end of the weblog titel -->
</div><!-- end of the head -->
Alles anzeigen