ich kriege diese linie nicht weg ....
hi und dankje soweit,. ich bekomme ber unten auf der page die drei liinien nicht weg...
hier das hauptindex -template_
<?php get_header(); ?>
<div id="content">
<div class="feature clearfloat" id="lead">
<?php
// this is where the Lead Story module begins
query_posts('showposts=1&cat=3'); ?>
<?php while (have_posts()) : the_post(); ?>
<?php
// this is where the Lead Story image gets printed
$values = get_post_custom_values("Image"); echo $values[0]; ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>" class="title">
<?php
// this is where the title of the Lead Story gets printed
the_title(); ?>
</a>
<?php
// this is where the excerpt of the Lead Story gets printed
the_content(); ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"></a>
<?php endwhile; ?>
</div><!--END FEATURE-->
<div id="rightcol">
<?php
// this is where you enter the IDs of which categories you want to display
$display_categories = array(4,5,6);
foreach ($display_categories as $category) { ?>
<div class="clearfloat">
<?php query_posts("showposts=1&cat=$category");
$wp_query->is_category = false;
$wp_query->is_archive = false;
$wp_query->is_home = true;
?>
<?php while (have_posts()) : the_post(); ?>
<?php
// this grabs the image filename
$values = get_post_custom_values("Image");
// this checks to see if an image file exists
if (isset($values[0])) {
?>
<?php } ?>
<?php
// this is where title of the article gets printed
the_title(); ?>»</a>
<?php the_content(); ?>
<?php endwhile; ?>
</div>
<?php } ?>
</div><!--END RIGHTCOL-->
<div id="leftcol">
<?php
// this is where you enter the IDs of which categories you want to display
$display_categories = array(7,8,9);
foreach ($display_categories as $category) { ?>
<div class="clearfloat">
<?php query_posts("showposts=1&cat=$category");
$wp_query->is_category = false;
$wp_query->is_archive = false;
$wp_query->is_home = true;
?>
<?php while (have_posts()) : the_post(); ?>
<?php
// this grabs the image filename
$values = get_post_custom_values("Image");
// this checks to see if an image file exists
if (isset($values[0])) {
?>
<?php } ?>
<a href="<?php the_permalink() ?>" rel="bookmark" class="title"><?php
// this is where title of the article gets printed
the_title(); ?>»</a>
<?php the_content(); ?>
<?php endwhile; ?>
</div>
<?php } ?>
</div><!--END LEFTCOL-->
</div><!--END CONTENT-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
kann jemand zaubern ?
danke
till