Sorry for the Noob question)

<div id="pagination"> <div class="alignright"><?php previous_posts_link('Предыдущая страница') ?></div> <div class="alignleft"><?php next_posts_link('Следующая страница') ?></div> </div> .alignright { text-align: left; } .alignleft { text-align: right; } 

Displays not as desired:

alt text

    1 answer 1

    What would you like? )) Maybe this :

     .alignright { float: left; } .alignleft { float: right; }