Hello i am new in WordPress and i don't know how to move up and down side bar navigiations. I need to move it very much. Please help me! Thank you! ;)
Hello i am new in WordPress and i don't know how to move up and down side bar navigiations. I need to move it very much. Please help me! Thank you! ;)
You want to move the Previous Entries / Next Entries links? Have a look in your wp-content/themes/YOURTHEME/index.php-folder.
I got these two lines:
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Previous Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Next Entries »') ?></div>
</div>
Move them up just below the <?php get_header(); ?> line. They should now be on top.
Or put them just below <div id="content" class="narrowcolumn">`
Examples above are from the default theme.
Any help?
This topic has been closed to new replies.