Ich habe in der style.css die Zustände der Links definiert:
Code
/*
Theme Name: buecherlaube
Theme URI: http://www.buecherlaube.de/
Description: Mein eigenes Template für den buecherlaube-Blog
Author: Tanja Moldenhauer
Author URI: http://www.buecherlaube.de/
*/
a:link { text-decoration:none; color:#666; }
a:visited { text-decoration:none; color:deepred; }
a:hover { text-decoration:none;color:deepred; }
a:active { text-decoration:none; color:deepred; }
a:focus { text-decoration:none; color:deepred; }
body {background: lightgray;font-family:Georgia,serif;font-size: 22px; color:#333;}
h1 {font-family:Georgia, serif; font-size: 48px; color: white;}
h2 {font-family:Georgia, serif; font-size: 16px;font-variant: small-caps;}
h3 {font-family:Georgia, serif; font-size: 20px;font-variant: small-caps; color: white;}
#wrapper {width: 920px; margin: auto; text-align: left; background: lavenderblush; border: 1px solid #333;}
#header {font-size:40px; color: #eee; background-image:url(images/buecherreihe.jpg);height: 150px; padding: 20px; border-bottom: 1px solid #333;}
#main {width: 540px; padding: 20px; float: left;background:lavenderblush;}
#sidebar {font-family: Verdana; font-size:12px; width: 249px; padding: 10px; padding-top: 20px;float: right; background: ghostwhite; border-left: 1px solid #333;}
#footer {clear: both; height: 50px; padding: 20px;background: ghostwhite; border-top: 1px solid #333;}
Alles anzeigen
Im Header ist die Style Datei verlinkt...
PHP
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//DE" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-
transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="de">
<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(); ?> - <?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 wp_head(); ?>
</head>
<body>
<div id="wrapper">
<a href=""URL" style="text-decoration: none;"<?php bloginfo('url'); ?>"><div id="header">
<h1><?php bloginfo('name'); ?></h1>
<h3><?php bloginfo('description'); ?></h3>
</div></a><!-- header -->
</a>
Alles anzeigen
Auf dem Blog erscheinen die Links aber nur "normal"
http://www.buecherlaube.de
siehe Link "Willkommen"
Wo liegt der Fehler?:roll: