Einzelnen Beitrag anzeigen
Alt 26.05.2008, 23:27   #85 (permalink)
SultanAdmin
PostRank: 0
 
Registriert seit: 22.05.2008
Beiträge: 8
@Silencer - die Frage, was ich nicht gemacht hab wär angebrachter. aber um Ehrlich zu sein, hab ich keine Ahnung warum soviel Fehler angezeigt werden.

Eigentlich habe und wollte ich nur die Farben, Schriften und die Grafiken ändern, was ich nebenbei falsch gemacht habe kann ich leider nicht sagen.

Hier ist der Code Michael:

<!-- START TABBED SECTION -->
<div id="container-4">
<ul>
<li><a class="ui-tabs" href="#fragment-1">Neuste</a></li>
<li><a class="ui-tabs" href="#fragment-2">Letzte News</a></li>
<li><a class="ui-tabs" href="#fragment-3">Anleitung</a></li>
<!-- Just add tabs as you like by following this scheme:
<li><a class="ui-tabs" href="#fragment-X">Link name here</a></li> -->
</ul>
<!-- LEAD ARTICLE -->
<div id="fragment-1">
<ul id="leadarticle">
<?php
// Lead Story module begins
query_posts('showposts=1&cat=1'); //selects 1 article of the category with ID 1 ?>
<?php while (have_posts()) : the_post(); ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><img src="<?php bloginfo('url'); ?>/wp-content/uploads/<?php
// this is where the Lead Story image gets printed
$values = get_post_custom_values("leadimage"); echo $values[0]; ?>" alt="" id="leadpic" /></a>
<h3>
<?php
// this is where the name of the Lead Story category gets printed
wp_list_categories('include=1&title_li=&style=none '); ?>
</h3>
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php __('Permanent Link to','branfordmagazine')?> <?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('weiter...'); ?>
<?php endwhile; ?>
</ul>
</div>
<!-- END LEAD ARTICLE -->
<!-- RECENT POSTS -->
<div id="fragment-2" class="bullets">
<h3 class="title">Letzte News</h3>
<p>Hier werden die letzten 4 verfassten Artikel aufgelistet. ....</p>
<?php wp_get_archives('type=postbypost&limit=4'); ?>
</div>
<!-- END RECENT POSTS -->
<!-- ABOUT -->
<div id="fragment-3">
<ul class="about">
<h3 class="title">Anleitung</h3>
<p>SultanWorld News - ...</p>
</ul>
</div>
<!-- END ABOUT -->
</div>
<!-- END TABBED SECTION -->
SultanAdmin ist offline   Mit Zitat antworten