Hey,
ich benutze Wordpress und kriege es in meinen neuen Theme einfach nicht hin, dass Bilder zentriert angezeigt werden.
So sieht es im Quelltext bei der aufgerufenen Seite aus (damit klappt das in jeden anderen Theme, muss also an der formatierung im neuen Theme liegen):
So sieht es in der Single.php Datei aus:
Egal was ich probiere, die Bilder sind immer an der linken Seite. Das sind die img Stellen in der style.css:
Woran kann das liegen?
Irgendeine Idee? :(
ich benutze Wordpress und kriege es in meinen neuen Theme einfach nicht hin, dass Bilder zentriert angezeigt werden.
So sieht es im Quelltext bei der aufgerufenen Seite aus (damit klappt das in jeden anderen Theme, muss also an der formatierung im neuen Theme liegen):
Code:
<p><img alt="" src="[URL="http://www.html.de/view-source:http://static.twitterfeed.com/images/branding.jpg"]http://url.jpg[/URL]" title="Twitterfeed" class="aligncenter" width="301" height="92" /></p>
Code:
[FONT=Arial]
<!-- BEGIN COL LEFT -->[/FONT] [FONT=Arial]
<div id="colLeft">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="postItem">
<div class="categs"><?php the_category(' ') ?></div>
<div class="meta">
<div><?php the_time('M j, Y') ?></div>
<div class="icoAuthor"><?php the_author_link(); ?></div>
<div class="icoComments"><?php comments_popup_link('Keine Kommentare', '1 Kommentar', '% Kommentare'); ?></div>
</div>
<h1><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h1>
<?php the_content(__('Continue reading »')); ?>
</div>
<?php comments_template(); ?>
<?php endwhile; ?>
<?php else : ?>
<p>Keine Treffer</p>
<?php endif; ?>
[/FONT] [FONT=Arial] </div>
<!-- END COL LEFT -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>[/FONT]
Code:
Code:
[FONT=Arial].postItem img {
[/FONT][FONT=Arial]border: solid #ddd 1px; background-color: #fff; padding: 5px;[/FONT]
[FONT=Arial] }
.postItem a img {[/FONT] [FONT=Arial]
border: solid #ddd 1px; background-color: #fff; padding: 5px;
}
.postItem .meta img {[/FONT] [FONT=Arial]
vertical-align:middle;
}[/FONT]
Irgendeine Idee? :(