Guten Tag
Ich möchte mein Theme ändern, ich verwende The Morning After 1.4!
Unser Blog ist: weltordnung.ch
Wenn ihr den Blog betrachtet seht ihr, dass das Theme 3 Spalten hat. Momentan ist in der linken Spalte der Inhalt und dann hat es 2 Menu Kolonnen Namen "Middle Column" und "Right Column".
Nun möchte ich gern, dass eine Sidebar links vom Inhalt ist und eine Rechts. Ich möchte eine dynamische Sidebar mit den Widgets benützen.
Könnt Ihr mir sagen wie ich das genau anstelle? Ich habe schon einige Themen hier über die Sidebar anpassung geholfen, nur habe ich in meinen Dateien dazu nichts gefunden.
Welche Dateien braucht ihr?
Im Anhang ist die Style.css da sie zu gross ist um hier gepostet zu werden!
Sonst schon mal:
[/CODE]index.php
<?php get_header(); ?>
<div id="topbanner" class="column span-14"> <!-- start top banner -->
<div class="pagetitle">
// index
</div>
</div> <!-- end top banner -->
<div id="arch_content" class="column span-14"> <!-- start home_content -->
<?php if (have_posts()) : ?>
<div class="column span-3 first">
<h2 class="archive_name"><?php bloginfo('name'); ?></h2>
<div class="archive_meta">
<div class="archive_feed">
<a href="<?php bloginfo('rss2_url'); ?>">RSS feed for <?php bloginfo('name'); ?></a>
</div>
</div>
</div>
<div class="column span-8">
<?php while (have_posts()) : the_post(); ?>
<div class="archive_post_block">
<h3 class="archive_title" id="post-<?php the_ID(); ?>"><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3>
<div class="archive_post_meta">By <?php the_author_posts_link(); ?> <span class="dot">⋅</span> <?php the_time('F j, Y'); ?> <span class="dot">⋅</span> <a href="<?php comments_link(); ?>"><?php comments_number('Post a comment','One comment','% comments'); ?></a></div>
<?php the_excerpt(); ?>
</div>
<?php endwhile; ?>
<div class="navigation">
<p><?php next_posts_link('« Previous') ?> <?php previous_posts_link('Next »') ?></p>
</div>
<?php else : ?>
<p>Lost? Go back to the <a href="<?php echo get_option('home'); ?>/">home page</a>.</p>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
</div> <!-- start home_content -->
<?php get_footer(); ?>
Alles anzeigen
sidebar.php
<div class="column span-3 last">
<?php if ( !function_exists('dynamic_sidebar')
|| !dynamic_sidebar('RightColumn') ) : ?>
<?php if (!( is_home() )) { ?>
<?php include('ad_side.php'); ?>
<?php } ?>
<?php if (function_exists('c2c_get_recent_comments')) { ?>
<div id="side_recent_comments">
<h3 class="mast">Recent Comments</h3>
<ul class="reccom">
<?php c2c_get_recent_comments(5, "<li>%comment_author% on %comments_URL%</li>"); ?>
</ul>
</div>
<?php } ?>
<?php if (function_exists('get_mostemailed')): ?>
<div id="side_most_emailed">
<h3 class="mast">Most Emailed</h3>
<ul class="email">
<?php get_mostemailed('post', 5); ?>
</ul>
</div>
<?php endif; ?>
<?php endif; ?>
</div>
Alles anzeigen
Was muss ich hier nun ändern?