Hallo, bin neu hier und hab auch gleich ein Anliegen.
Es geht um das Lazy-Gallery Plugin. Funktioniert soweit bestens, das heisst Firefox stellt alles richtig dar. Nur IE und Opera verschieben a) die Sidebar nach unten und b) stellt der den Container mit den Fotos nicht richtig dar.
Habe hier schon im Forum gesucht und das ein oder andere probiert, aber das Problem besteht nach wie vor.
Hier der Link.
Meine lazy-index.php sieht folgendermaßen aus:
PHP
<?php
/* Don't remove this line. */
require('./wp-blog-header.php');
?>
<?php get_header(); ?>
<div class="post">
<div id="gallery">
<?php showGallery();?>
</div>
</div>
<?php get_footer(); ?>
Alles anzeigen
css dazu:
Code
#gallery {
position: left;
width: 500px;
\width: 500px;
w\idth: 500px;
}
.image {
width: 500px;
\width: 500px;
w\idth: 500px;
}
}
#gallery .image {
text-align: left;
}
#gallery .image img {
border: 1px solid #a9a9a9;
margin: 6px 6px 6px 6px;
padding: 2px;
}
#gallery .image img:hover, .image img:focus {
background-color: #a9a9a9;
}
#gallery .imgdata {
border: 1px solid #a9a9a9;
margin: 6px 0px 6px 0px;
padding: 4px;
}
#gallery #nav {
border: 0px solid #a9a9a9;
margin: 6px 0px 6px 0px;
padding: 4px 4px 0px 4px;
height: 18px;
}
#gallery #nav .alignleft {
float: left;
}
#gallery #nav .alignright {
float: right;
}
#gallery .folder {
margin: 6px 0px 6px 0px;
padding: 4px 0px 4px 0px;
}
Alles anzeigen
Hab dieses css in mein Theme-CSS integriert, da die lazy-index.php ja ja den header included und damit das CSS.
Danke für die Hilfe ;)