Hallo ihr Lieben, sitze seit zwei Tagen vor dem Problem, dass der Hintergrund meiner Postings verschoben ist. Er besteht aus 3 Bildern.
Einen Link gibt es nicht, da es sich bis jetzt nur als Demo auf meinem Rechner befindet. Dafür habe ein Screenshot hochgeladen.
Mein CSS:
Code
/* Post Style*/
.entry {
width: 655px;
float: right;
margin-right: 210px;
color: #383838;
font-family: verdana;
font-size: 7pt;
text-align: justify;
background-image: url(http://i22.photobucket.com/albums/b346/Phelpsaholics/wp/entry-top-1.jpg);
background-repeat: none;
width: 655px;
height: 82px;
}
.entry-wrapper {
background-image: url(http://i22.photobucket.com/albums/b346/Phelpsaholics/wp/entry-middle.jpg);
background-repeat:repeat-y;
width: 655px;
margin:0 auto;
padding:0;
border:0;
}
.entry-content {
color: #E6E6E6;
font-family: verdana;
font-size: 7pt;
text-align: justify;
padding-bottom: 10px;
width: 615px;
margin-left: 10px;
}
Alles anzeigen
und mein index.php
PHP
<?php get_header(); ?><!--content-->
<div id="page">
<!--left-col-->
<div id="contentwrapper">
<div id="content" role="main">
<!--post-->
<?php query_posts($query_string.'&cat=-3&&order=DESC');
while (have_posts()) : the_post(); ?>
<div class="entry" id="post-<?php the_ID(); ?>">
<h1>\\\<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>///</h1>
<div class="entry-wrapper"><div style="float:right;"><?php if (function_exists('get_cat_icon')) get_cat_icon('class="caticon"'); ?></div>
<div style="clear:both;"></div>
<div class="entry-content">
<?php the_content(''); ?></div> </div>
<div class="entry-footer"><div class="entry-meta-out">
<span class="entry-meta1"><h2>Posted by <span style="background: url(http://i803.photobucket.com/albums/yy314/chrissy2504/7F70N.gif) no-repeat scroll 0% 0% transparent; color: #4caebd; text-shadow: 0px 0px 5px rgb(70, 135, 134);"><?php the_author() ?></span> with <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?> on <?php the_time('jS, M, Y') ?> \\ Category: <?php the_category(', '); ?> </h2>
</div>
</div>
</div>
<!--post-end-->
<?php endwhile; ?>
<div class="navigation">
<?php if(function_exists('wp_paginate')) {
wp_paginate();
} ?>
</div><!--left-col-end-->
<?php get_sidebar(); ?>
</div><!--content-end-->
</div><!--wrapper-end-->
<?php get_footer(); ?>
Alles anzeigen
Vielen Dank schonmal fürs helfen ;-)