Hallo zusammen,
ich habe mit Wordpress 2.1.2 eine Seite für unseren Astrotreff gebastelt, siehe hier: http://www.slyspace.de/home/
Die funktioniert auch sehr gut, es sei denn man besitzt den IE6 oder niedriger!
Da fällt die Sidebar irgendwie raus und ich habe keinen blassen Schimmer warum das passiert!
In so ziemlich allen anderen Browsern (einschließlich IE7) funtioniert das, siehe hier: http://browsershots.org/website/http:/…e/home/#success
Ich hoffe es kann mir jemand weiterhelfen,
hier noch der Code aus dem Stylesheet zur Sidebar:
PHP
#sidebar {
float: right;
font-size: 11px;
line-height: 1.5em;
padding: 0 10px;
width: 190px;
}
/* Sidebar */
#sidebar h2 {
background: url(images/dot.gif) repeat-x bottom;
color: #e2d60e;
font-size: 12px;
font-weight: bold;
letter-spacing: 0.2em;
margin: 1;
padding: 0;
text-transform: uppercase;
}
#sidebar ul, #sidebar ol {
list-style: none;
margin: 0;
padding: 5px;
}
#sidebar li, #sidebar li:hover {
list-style: none;
margin: 0;
padding: 0;
}
#sidebar a {
color: white;
}
#sidebar a:hover {
background: url(images/dot.gif) repeat-x bottom;
color: white;
}
#sidebar div {
margin: 20px 0;
padding: 0;
}
Alles anzeigen
und der Code der Sidebar an sich:
PHP
<!-- begin sidebar -->
<div id="sidebar">
<?php wp_list_categories('show_count=1&title_li=<h2>Kategorien</h2>'); ?>
<h2>Archiv</h2>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
<?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>
<?php wp_list_bookmarks(); ?>
<h2>Meta</h2>
<ul>
<?php wp_register(); ?>
<?php wp_loginout(); ?>
<?php wp_meta(); ?>
</ul>
<?php } ?>
</ul>
</div>
<div class="both"></div>
<!-- </div> -->
<!-- end sidebar -->
Alles anzeigen
Gruß Sebastian