damit waere die pagenavi immer am unteren rand des browserfensters.
(soweit nur im firefox getestet)
Danke, habe das jetzt mal ausprobiert, damit hast du recht, ist jetzt quasi festgetackert im Browserfenster, nur das war nicht mein ansinnen.
Ich wollte ja das die navbar ja weiter oben ist, so etwa in der höhe wie das "ältere Beiträge" und am besten noch mittig.
Ich stell am besten hier mal Auszüge der 4 Dateien rein die ich geändert habe, damit man es besser nachvollziehen kann.
Die Änderungen markiere ich mal rot.
search.php
<?php else : ?>
<div id="post-0" class="post no-results not-found">
<h2 class="entry-title"><?php _e( 'Nothing Found', 'twentyten' ); ?></h2>
<div class="entry-content">
<p><?php _e( 'Sorry, but nothing matched your search criteria. Please try again with some different keywords.', 'twentyten' ); ?></p>
<?php get_search_form(); ?>
</div><!-- .entry-content -->
</div><!-- #post-0 -->
[COLOR=Red]<?php if(function_exists('wp_page_numbers')) : wp_page_numbers(); endif; ?>[/COLOR]
<?php endif; ?>
</div><!-- #content -->
</div><!-- #container -->
Alles anzeigen
index.php
<?php get_sidebar(); ?>
<?php get_footer(); ?>
[COLOR=Red]<?php if(function_exists('wp_page_numbers')) : wp_page_numbers(); endif; ?>[/COLOR]
category.php
<?php get_sidebar(); ?>
<?php get_footer(); ?>
[COLOR=Red]<?php if(function_exists('wp_page_numbers')) : wp_page_numbers(); endif; ?>[/COLOR]
archive.php
<?php if ( is_day() ) : ?>
<?php printf( __( 'Daily Archives: <span>%s</span>', 'twentyten' ), get_the_date() ); ?>
<?php elseif ( is_month() ) : ?>
<?php printf( __( 'Monthly Archives: <span>%s</span>', 'twentyten' ), get_the_date( 'F Y' ) ); ?>
<?php elseif ( is_year() ) : ?>
<?php printf( __( 'Yearly Archives: <span>%s</span>', 'twentyten' ), get_the_date( 'Y' ) ); ?>
<?php else : ?>
<?php _e( 'Blog Archives', 'twentyten' ); ?>
[COLOR=Red] <?php if(function_exists('wp_page_numbers')) : wp_page_numbers(); endif; ?>[/COLOR]
<?php endif; ?>
</h1>
Alles anzeigen